vaibhaviiii28 commited on
Commit
aefc6b1
·
verified ·
1 Parent(s): 260ec7c

Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +18 -0
Dockerfile ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use official Python image
2
+ FROM python:3.8
3
+
4
+ # Set working directory
5
+ WORKDIR /app
6
+
7
+ # Copy files
8
+ COPY . /app
9
+
10
+ # Install dependencies
11
+ RUN pip install --no-cache-dir -r requirements.txt
12
+
13
+ # Expose ports
14
+ EXPOSE 5000
15
+ EXPOSE 8000
16
+
17
+ # Run the application
18
+ CMD ["python", "app.py"]