Made Dockerfile

This commit is contained in:
root 2020-04-01 20:59:38 -04:00
parent f58654dfde
commit 14b8a96774

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM python:alpine3.7
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 80
CMD python ./print.py