adding dockerfile

This commit is contained in:
0x6f736f646f
2020-03-11 23:03:31 +03:00
parent cfcbf46a71
commit 8b13c47b57
+6
View File
@@ -0,0 +1,6 @@
FROM python:3.7-slim
LABEL maintainer="Rodney Osodo"
WORKDIR /app
COPY requirements.txt .
RUN pip3 install -r requirements.txt
COPY app.py .