LazyBoss commited on
Commit
b3557a4
·
verified ·
1 Parent(s): d11328a

Create Docker

Browse files
Files changed (1) hide show
  1. Docker +20 -0
Docker ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 requirements file into the container
8
+ COPY requirements.txt requirements.txt
9
+
10
+ # Install dependencies
11
+ RUN pip install -r requirements.txt
12
+
13
+ # Copy the rest of the application into the container
14
+ COPY . .
15
+
16
+ # Expose port 8080
17
+ EXPOSE 8080
18
+
19
+ # Run the Flask app
20
+ CMD ["python", "app.py"]