Spaces:
Sleeping
Sleeping
Commit
·
de54dfc
1
Parent(s):
27e17be
Edit docker
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -10,8 +10,9 @@ COPY requirements.txt /app/
|
|
| 10 |
# Install dependencies
|
| 11 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 12 |
|
| 13 |
-
# Copy
|
| 14 |
COPY app /app/app
|
|
|
|
| 15 |
|
| 16 |
# Expose port (Hugging Face Spaces typically uses 7860 by default, but you can adjust if needed)
|
| 17 |
EXPOSE 7860
|
|
|
|
| 10 |
# Install dependencies
|
| 11 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 12 |
|
| 13 |
+
# Copy app and static files
|
| 14 |
COPY app /app/app
|
| 15 |
+
COPY static /app/static
|
| 16 |
|
| 17 |
# Expose port (Hugging Face Spaces typically uses 7860 by default, but you can adjust if needed)
|
| 18 |
EXPOSE 7860
|