Spaces:
Runtime error
Runtime error
fix: Remove exec from Dockerfile CMD to resolve PATH error
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -25,5 +25,4 @@ RUN mkdir -p models
|
|
| 25 |
EXPOSE 7860
|
| 26 |
|
| 27 |
# Command to run the application
|
| 28 |
-
|
| 29 |
-
CMD ["exec", "python", "app.py"]
|
|
|
|
| 25 |
EXPOSE 7860
|
| 26 |
|
| 27 |
# Command to run the application
|
| 28 |
+
CMD ["python", "app.py"]
|
|
|