Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +7 -7
Dockerfile
CHANGED
@@ -17,14 +17,14 @@ RUN apt-get update && \
|
|
17 |
COPY requirements.txt .
|
18 |
RUN pip install --no-cache-dir -r requirements.txt
|
19 |
|
20 |
-
# Copy application files
|
21 |
-
COPY . .
|
22 |
-
|
23 |
# Create directory for examples
|
24 |
-
RUN mkdir -p
|
|
|
|
|
|
|
25 |
|
26 |
-
# Expose port for
|
27 |
-
EXPOSE
|
28 |
|
29 |
# Command to run the application
|
30 |
-
CMD ["
|
|
|
17 |
COPY requirements.txt .
|
18 |
RUN pip install --no-cache-dir -r requirements.txt
|
19 |
|
|
|
|
|
|
|
20 |
# Create directory for examples
|
21 |
+
RUN mkdir -p examples
|
22 |
+
|
23 |
+
# Copy application files
|
24 |
+
COPY app.py .
|
25 |
|
26 |
+
# Expose port for Gradio
|
27 |
+
EXPOSE 7860
|
28 |
|
29 |
# Command to run the application
|
30 |
+
CMD ["python", "app.py"]
|