Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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
|
| 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"]
|