Rooni commited on
Commit
e2186ba
·
verified ·
1 Parent(s): 7de0168

Create Dockerfile

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