cthuaung commited on
Commit
ee82f61
·
verified ·
1 Parent(s): de0cd5a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -26,7 +26,7 @@ ENV HOME=/home/user \
26
  WORKDIR ${HOME}/app
27
 
28
  # Copy the current directory contents into the container at $HOME/app settting the owner to
29
- COPY --chown=user.${HOME}/app
30
 
31
  ## Start the FASTAPI app on port 7860
32
  CMD ["uvicorn", "app:app","--host", "0.0.0.0", "--port", "7860"]
 
26
  WORKDIR ${HOME}/app
27
 
28
  # Copy the current directory contents into the container at $HOME/app settting the owner to
29
+ COPY --chown=user . ${HOME}/app
30
 
31
  ## Start the FASTAPI app on port 7860
32
  CMD ["uvicorn", "app:app","--host", "0.0.0.0", "--port", "7860"]