Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +5 -1
Dockerfile
CHANGED
|
@@ -43,4 +43,8 @@ RUN pip install --no-cache-dir --upgrade auralis gradio
|
|
| 43 |
EXPOSE 7860
|
| 44 |
|
| 45 |
# Start the Gradio app from the repository
|
| 46 |
-
CMD ["python", "examples/gradio_example.py"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
EXPOSE 7860
|
| 44 |
|
| 45 |
# Start the Gradio app from the repository
|
| 46 |
+
#CMD ["python", "examples/gradio_example.py"]
|
| 47 |
+
|
| 48 |
+
COPY ./app.py /home/user/app/app.py
|
| 49 |
+
|
| 50 |
+
CMD ["python", "app.py"]
|