8 lines
122 B
Docker
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"]
|