singhjagpreet commited on
Commit
f869808
1 Parent(s): ee4bfcd

adding file

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -25,7 +25,7 @@ WORKDIR $HOME/app
25
 
26
  # Try and run pip command after setting the user with `USER user` to avoid permission issues with Python
27
  RUN pip install --no-cache-dir --upgrade pip
28
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
29
 
30
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
31
  COPY --chown=user . $HOME/app
 
25
 
26
  # Try and run pip command after setting the user with `USER user` to avoid permission issues with Python
27
  RUN pip install --no-cache-dir --upgrade pip
28
+ RUN pip install --no-cache-dir --upgrade -r app/requirements.txt
29
 
30
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
31
  COPY --chown=user . $HOME/app