Spaces:
Paused
Paused
Andrew Smith
commited on
Commit
·
f11f24f
1
Parent(s):
10e72cb
Update working dir
Browse files- Dockerfile +5 -3
Dockerfile
CHANGED
|
@@ -26,8 +26,10 @@ ENV VIRTUAL_ENV=/app/.venv \
|
|
| 26 |
|
| 27 |
COPY --from=builder ${VIRTUAL_ENV} ${VIRTUAL_ENV}
|
| 28 |
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
COPY
|
|
|
|
|
|
|
| 32 |
|
| 33 |
CMD ["uvicorn", "image_search.main:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 26 |
|
| 27 |
COPY --from=builder ${VIRTUAL_ENV} ${VIRTUAL_ENV}
|
| 28 |
|
| 29 |
+
WORKDIR /app
|
| 30 |
+
|
| 31 |
+
COPY image_search /app/image_search
|
| 32 |
+
COPY static /app/static
|
| 33 |
+
COPY images /app/images
|
| 34 |
|
| 35 |
CMD ["uvicorn", "image_search.main:app", "--host", "0.0.0.0", "--port", "7860"]
|