AlaaElsayed commited on
Commit
cc4a190
·
1 Parent(s): df54829

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +18 -18
Dockerfile CHANGED
@@ -1,18 +1,18 @@
1
- # Use an official Python image
2
- FROM python:3.10
3
-
4
- # Set working directory inside the container
5
- WORKDIR /app
6
-
7
- # Copy all files into the container
8
- COPY . /app
9
-
10
- # Install dependencies
11
- RUN pip install --upgrade pip
12
- RUN pip install -r requirements.txt
13
-
14
- # Expose the default port
15
- EXPOSE 5000
16
-
17
- # Run the Flask app
18
- CMD ["python", "app.py"]
 
1
+ # Use an official Python image
2
+ FROM python:3.10
3
+
4
+ # Set working directory inside the container
5
+ WORKDIR /app
6
+
7
+ # Copy all files into the container
8
+ COPY . /app
9
+
10
+ # Install dependencies
11
+ RUN pip install --upgrade pip
12
+ RUN pip install -r requirements.txt
13
+
14
+ # Expose the default port
15
+ EXPOSE 5000
16
+
17
+ # Run the Flask app
18
+ CMD ["python", "app.py"]