2020-02-14 00:58:44 +01:00
|
|
|
FROM python:slim
|
|
|
|
|
|
|
|
RUN pip install flask
|
2020-02-24 23:20:20 +01:00
|
|
|
COPY /beer/beer.py /beer.py
|
2020-04-09 00:42:46 +02:00
|
|
|
COPY /beer/templates /templates
|
2020-04-09 00:33:52 +02:00
|
|
|
COPY /beer/static /static
|
2020-02-14 00:58:44 +01:00
|
|
|
EXPOSE 5000
|
|
|
|
|
2020-02-14 01:06:37 +01:00
|
|
|
CMD ["python", "/beer.py"]
|