Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -1,14 +1,14 @@
|
|
| 1 |
# pick your favorite slim Python base
|
| 2 |
FROM python:3.10-slim
|
| 3 |
|
| 4 |
-
|
| 5 |
|
| 6 |
# install dependencies
|
| 7 |
COPY requirements.txt .
|
| 8 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 9 |
|
| 10 |
# copy app
|
| 11 |
-
|
| 12 |
|
| 13 |
# expose Gradio default port
|
| 14 |
EXPOSE 7860
|
|
|
|
| 1 |
# pick your favorite slim Python base
|
| 2 |
FROM python:3.10-slim
|
| 3 |
|
| 4 |
+
WORKDIR /app
|
| 5 |
|
| 6 |
# install dependencies
|
| 7 |
COPY requirements.txt .
|
| 8 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 9 |
|
| 10 |
# copy app
|
| 11 |
+
COPY . .
|
| 12 |
|
| 13 |
# expose Gradio default port
|
| 14 |
EXPOSE 7860
|