Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -40,6 +40,6 @@ COPY ./requirements.txt /code/requirements.txt
|
|
| 40 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 41 |
|
| 42 |
# Copy your application source code and script
|
| 43 |
-
COPY ./
|
| 44 |
|
| 45 |
CMD ["uvicorn", "app.index:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 40 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 41 |
|
| 42 |
# Copy your application source code and script
|
| 43 |
+
COPY ./ /app
|
| 44 |
|
| 45 |
CMD ["uvicorn", "app.index:app", "--host", "0.0.0.0", "--port", "7860"]
|