beer/Dockerfile
kleph 9694eb66b4
Some checks failed
continuous-integration/drone/push Build is failing
Add both favicons and routing
Fix bad sed in Dockerfiles COPY
2020-04-09 00:44:08 +02:00

9 lines
166 B
Docker

FROM python:slim
RUN pip install flask
COPY /beer/beer.py /beer.py
COPY /beer/templates /templates
COPY /beer/static /static
EXPOSE 5000
CMD ["python", "/beer.py"]