From 96e3b7ae6d16af8c453a282326ee329d765ca936 Mon Sep 17 00:00:00 2001 From: kleph Date: Thu, 9 Apr 2020 00:33:52 +0200 Subject: [PATCH] Add statics to the image --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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"]