minhuu commited on
Commit
5ae9f77
·
verified ·
1 Parent(s): 0662e77

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -73,9 +73,13 @@ RUN mkdir /data
73
  # Python packages and application files
74
  #######################################
75
 
 
76
  RUN --mount=target=requirements.txt,source=requirements.txt \
77
  pip install --no-cache-dir --upgrade -r requirements.txt
78
 
 
 
 
79
  # Copy the current directory contents into /app
80
  COPY . /app
81
 
 
73
  # Python packages and application files
74
  #######################################
75
 
76
+ # Install Python packages from requirements.txt (ensure jupyterlab is included here or install explicitly)
77
  RUN --mount=target=requirements.txt,source=requirements.txt \
78
  pip install --no-cache-dir --upgrade -r requirements.txt
79
 
80
+ # Explicitly install JupyterLab if not already in requirements.txt
81
+ RUN pip install --no-cache-dir jupyterlab
82
+
83
  # Copy the current directory contents into /app
84
  COPY . /app
85