pg-13 commited on
Commit
080ce5b
·
verified ·
1 Parent(s): a74d5b6

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -0
Dockerfile ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10
2
+
3
+
4
+ COPY . /app
5
+ WORKDIR /app
6
+
7
+
8
+ RUN pip install -r requirements.txt
9
+ EXPOSE 5000
10
+
11
+
12
+ CMD ["python3", "app.py"]