From 57e5996513a84bff15b24654dbf8af3fadabf78c Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 14 Feb 2019 16:31:40 +0100 Subject: [PATCH] Fix Docker Image having messed up static files --- .dockerignore | 1 + Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index 87a336e06..7be654a78 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,3 +1,4 @@ env helm passbook-ui +static diff --git a/Dockerfile b/Dockerfile index bba4fe9fd..dbd57f0d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ FROM python:3.6-slim-stretch COPY ./passbook/ /app/passbook COPY ./manage.py /app/ COPY ./requirements.txt /app/ -COPY --from=build /app/static/* /app/static/ +COPY --from=build /app/static /app/static/ WORKDIR /app/