Spaces:
Sleeping
Sleeping
COPY ./app.py /code/app.py
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -11,6 +11,7 @@ WORKDIR /code
|
|
| 11 |
COPY --from=build /app/dist /code/dist
|
| 12 |
COPY ./requirements.txt /code/requirements.txt
|
| 13 |
COPY ./backend /code/backend
|
|
|
|
| 14 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 15 |
|
| 16 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 11 |
COPY --from=build /app/dist /code/dist
|
| 12 |
COPY ./requirements.txt /code/requirements.txt
|
| 13 |
COPY ./backend /code/backend
|
| 14 |
+
COPY ./app.py /code/app.py
|
| 15 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 16 |
|
| 17 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|