navindusa commited on
Commit
d65c563
·
1 Parent(s): 8cfa4dd

Update Dockerfile to copy source code to the current directory with appuser ownership

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -41,7 +41,7 @@ RUN python -m pip install --upgrade pip \
41
  && pip install -r requirements.txt
42
 
43
  # Copy the source code into the container.
44
- COPY --chown=appuser . $HOME/app
45
 
46
  # Expose the port that the application listens on.
47
  EXPOSE 7860
 
41
  && pip install -r requirements.txt
42
 
43
  # Copy the source code into the container.
44
+ COPY --chown=appuser . .
45
 
46
  # Expose the port that the application listens on.
47
  EXPOSE 7860