From 6b0cba8511bf6c6d30a62ac14775aea32fdee0e6 Mon Sep 17 00:00:00 2001 From: kleph Date: Thu, 20 Feb 2020 02:26:34 +0100 Subject: [PATCH] Fix template path in docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"]