Update Dockerfile
Browse files- 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
|
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
|
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"]
|