Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -13,5 +13,8 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 13 |
# Expose the port your app runs on
|
| 14 |
EXPOSE 7860
|
| 15 |
|
|
|
|
|
|
|
|
|
|
| 16 |
# Command to run the application
|
| 17 |
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "app:app"]
|
|
|
|
| 13 |
# Expose the port your app runs on
|
| 14 |
EXPOSE 7860
|
| 15 |
|
| 16 |
+
RUN chmod -R 777 /app/static/uploads
|
| 17 |
+
|
| 18 |
+
|
| 19 |
# Command to run the application
|
| 20 |
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "app:app"]
|