SeedOfEvil commited on
Commit
38b5716
·
verified ·
1 Parent(s): 085959f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -6,7 +6,7 @@ RUN apt-get update && apt-get install -y git ffmpeg libsm6 libxext6
6
  # Set the working directory
7
  WORKDIR /app
8
 
9
- # Copy requirements and install dependencies
10
  COPY requirements.txt .
11
  RUN pip install --upgrade pip && pip install -r requirements.txt
12
 
@@ -16,5 +16,5 @@ COPY . .
16
  # Expose the port for Gradio (default is 7860)
17
  EXPOSE 7860
18
 
19
- # Start the app
20
  CMD ["python", "app.py"]
 
6
  # Set the working directory
7
  WORKDIR /app
8
 
9
+ # Copy and install Python dependencies
10
  COPY requirements.txt .
11
  RUN pip install --upgrade pip && pip install -r requirements.txt
12
 
 
16
  # Expose the port for Gradio (default is 7860)
17
  EXPOSE 7860
18
 
19
+ # Start the application
20
  CMD ["python", "app.py"]