andreagalle commited on
Commit
dcc186f
·
1 Parent(s): 2b681fa

copy everything

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -20,7 +20,7 @@ ENV HOME=/home/user \
20
  WORKDIR $HOME/app
21
 
22
  # Copy the current directory contents into the container at /code
23
- COPY --chown=user . $HOME/app
24
 
25
  # Specify the command to run your FastAPI app with Uvicorn
26
  CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
 
20
  WORKDIR $HOME/app
21
 
22
  # Copy the current directory contents into the container at /code
23
+ COPY --chown=user ./ $HOME/app
24
 
25
  # Specify the command to run your FastAPI app with Uvicorn
26
  CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]