kadabengaran commited on
Commit
5ecddf2
1 Parent(s): 23a7e3a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -42,8 +42,10 @@ ENV HOME=/home/user \
42
  # Install Python dependencies
43
  RUN pip3 install --no-cache-dir --upgrade pip && \
44
  pip3 install --no-cache-dir --upgrade -r /code/requirements.txt && \
45
- pip3 show uvicorn
46
-
 
 
47
 
48
  # Set the application directory for the user
49
  WORKDIR $HOME/app
 
42
  # Install Python dependencies
43
  RUN pip3 install --no-cache-dir --upgrade pip && \
44
  pip3 install --no-cache-dir --upgrade -r /code/requirements.txt && \
45
+ pip3 list > /code/installed_packages.log
46
+
47
+ # Print installed packages to the build log
48
+ RUN cat /code/installed_packages.log
49
 
50
  # Set the application directory for the user
51
  WORKDIR $HOME/app