diff --git a/Dockerfile b/Dockerfile index 9a96d59..4d8f801 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,8 @@ FROM python:slim RUN pip install flask COPY /beer/beer.py /beer.py -COPY /beer/templates /templates +COPY /beer/static /static +COPY /beer/static /static EXPOSE 5000 CMD ["python", "/beer.py"]