File size: 356 Bytes
efc72ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM python:3.11.5

# Update apt-get
RUN apt-get update

# Upgrade pip
RUN pip install --upgrade pip 

# Make a new directory to put our code in
WORKDIR /python

COPY requirements.txt .

# Install the Python dependencies
RUN pip install -r requirements.txt


CMD ["jupyter" , "lab", "--ip=0.0.0.0", "--port=8888", "--allow-root", "--NotebookApp.token=''"]