File size: 288 Bytes
6ba0b2e
 
79bead7
6ba0b2e
 
79bead7
6ba0b2e
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Use a base image with Python
FROM python:3.8

# Set the working directory
WORKDIR /app

# Install JupyterLab
RUN pip install jupyterlab

# Expose port 8080
EXPOSE 7860

# Start JupyterLab on port 8080
CMD ["jupyter", "lab", "--ip=0.0.0.0", "--port=7860", "--no-browser", "--allow-root"]