Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +8 -5
Dockerfile
CHANGED
|
@@ -1,5 +1,8 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Use the multi-platform image
|
| 2 |
+
FROM samyak1515151/pdf:fixed
|
| 3 |
+
|
| 4 |
+
# Set writable directory for matplotlib
|
| 5 |
+
ENV MPLCONFIGDIR=/tmp/matplotlib
|
| 6 |
+
|
| 7 |
+
# CMD is likely already in your image, but explicit for clarity
|
| 8 |
+
CMD ["python", "app.py"]
|