Spaces:
Sleeping
Sleeping
Commit ·
480ed09
1
Parent(s): 9c598c3
Clear the entry point
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -37,4 +37,7 @@ ENV PYTHONUNBUFFERED=1
|
|
| 37 |
# Expose the port Gradio runs on
|
| 38 |
EXPOSE 7860
|
| 39 |
|
|
|
|
|
|
|
|
|
|
| 40 |
CMD ["python", "main.py"]
|
|
|
|
| 37 |
# Expose the port Gradio runs on
|
| 38 |
EXPOSE 7860
|
| 39 |
|
| 40 |
+
# Clear the inherited ENTRYPOINT from the base image to allow CMD to run as the main process
|
| 41 |
+
ENTRYPOINT [""]
|
| 42 |
+
|
| 43 |
CMD ["python", "main.py"]
|