Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +11 -8
Dockerfile
CHANGED
@@ -1,9 +1,12 @@
|
|
1 |
-
FROM python:3.9-slim
|
2 |
-
|
3 |
-
WORKDIR /app
|
4 |
-
|
5 |
-
COPY . .
|
6 |
-
|
7 |
-
|
8 |
-
|
|
|
|
|
|
|
9 |
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]
|
|
|
1 |
+
FROM python:3.9-slim
|
2 |
+
|
3 |
+
WORKDIR /app
|
4 |
+
|
5 |
+
COPY . .
|
6 |
+
|
7 |
+
# Create uploads directory with proper permissions
|
8 |
+
RUN mkdir -p static/uploads && chmod 777 static/uploads
|
9 |
+
|
10 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
11 |
+
|
12 |
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]
|