beer/Dockerfile

9 lines
128 B
Docker
Raw Normal View History

2020-02-14 00:58:44 +01:00
FROM python:slim
RUN pip install flask
COPY beer.py /beer.py
2020-02-20 02:26:34 +01:00
COPY templates /templates
2020-02-14 00:58:44 +01:00
EXPOSE 5000
2020-02-14 01:06:37 +01:00
CMD ["python", "/beer.py"]