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