Spaces:
Runtime error
Runtime error
Update dockerfile
Browse files- dockerfile +17 -17
dockerfile
CHANGED
|
@@ -1,17 +1,17 @@
|
|
| 1 |
-
# Use the official Python image from the Docker Hub
|
| 2 |
-
FROM python:3.
|
| 3 |
-
|
| 4 |
-
# Set the working directory
|
| 5 |
-
WORKDIR /app
|
| 6 |
-
|
| 7 |
-
# Copy the current directory contents into the container at /app
|
| 8 |
-
COPY . /app
|
| 9 |
-
|
| 10 |
-
# Install any needed packages specified in requirements.txt
|
| 11 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
| 12 |
-
|
| 13 |
-
# Make port 7860 available to the world outside this container
|
| 14 |
-
EXPOSE 7860
|
| 15 |
-
|
| 16 |
-
# Run app.py when the container launches
|
| 17 |
-
CMD ["python", "app.py"]
|
|
|
|
| 1 |
+
# Use the official Python image from the Docker Hub
|
| 2 |
+
FROM python:3.8-slim
|
| 3 |
+
|
| 4 |
+
# Set the working directory
|
| 5 |
+
WORKDIR /app
|
| 6 |
+
|
| 7 |
+
# Copy the current directory contents into the container at /app
|
| 8 |
+
COPY . /app
|
| 9 |
+
|
| 10 |
+
# Install any needed packages specified in requirements.txt
|
| 11 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 12 |
+
|
| 13 |
+
# Make port 7860 available to the world outside this container
|
| 14 |
+
EXPOSE 7860
|
| 15 |
+
|
| 16 |
+
# Run app.py when the container launches
|
| 17 |
+
CMD ["python", "app.py"]
|