yashzambre commited on
Commit
125001f
·
1 Parent(s): 255711f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 /Users/yashzambre/Desktop/backup/RA_WORK/web/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", "/Users/yashzambre/Desktop/backup/RA_WORK/web/gradio_app.py"]
 
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"]