Spaces:
Build error
Build error
Commit ·
125001f
1
Parent(s): 255711f
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -11,10 +11,10 @@ COPY requirements.txt .
|
|
| 11 |
RUN pip install -r requirements.txt
|
| 12 |
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
|
| 13 |
# Copy the Gradio script to the container
|
| 14 |
-
COPY
|
| 15 |
|
| 16 |
# Expose the port that Gradio will run on
|
| 17 |
EXPOSE 7862
|
| 18 |
|
| 19 |
# Start the Gradio app
|
| 20 |
-
CMD ["python", "
|
|
|
|
| 11 |
RUN pip install -r requirements.txt
|
| 12 |
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
|
| 13 |
# Copy the Gradio script to the container
|
| 14 |
+
COPY gradio_app.py .
|
| 15 |
|
| 16 |
# Expose the port that Gradio will run on
|
| 17 |
EXPOSE 7862
|
| 18 |
|
| 19 |
# Start the Gradio app
|
| 20 |
+
CMD ["python", "gradio_app.py"]
|