3morrrrr commited on
Commit
5815fe1
·
verified ·
1 Parent(s): 434d0b1

Update dockerfile

Browse files
Files changed (1) hide show
  1. dockerfile +17 -17
dockerfile CHANGED
@@ -1,17 +1,17 @@
1
- # Use the official Python image from the Docker Hub
2
- FROM python:3.9.6-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"]
 
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"]