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