beer/Dockerfile
kleph acae6f1af4
Some checks failed
continuous-integration/drone/push Build is failing
[CI] Add
2020-02-14 01:53:11 +01:00

8 lines
122 B
Docker

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