This commit is contained in:
danamir
2020-12-04 13:10:18 +03:00
parent fab8c223bf
commit b40fd5ee4a
2 changed files with 35 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM python:3.7-alpine
RUN apk update
RUN apk add g++ gcc libxml2 libxslt-dev
WORKDIR /project
ADD . /project
RUN pip install -r requirements.txt
CMD ["python","app.py"]pip