Kvikontent commited on
Commit
e0f45d3
·
1 Parent(s): ea1a15f

Create dockerfile

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