All files

This commit is contained in:
Guillem Hernandez Sola
2018-10-25 16:57:44 +02:00
parent 63fa474306
commit cc5c9fd797
5 changed files with 149 additions and 19 deletions

5
swarm/Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM python:3.7-alpine
ADD . /code
WORKDIR /code
RUN pip install -r requirements.txt
CMD ["python", "app.py"]