From d44ac6e2a30cf8bcaeb58a6f81410b8c69fbdac8 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Wed, 2 Oct 2019 22:16:48 +0200 Subject: [PATCH] static(minor): fix build path for static image --- static.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static.Dockerfile b/static.Dockerfile index f6b69297d..02d267d17 100644 --- a/static.Dockerfile +++ b/static.Dockerfile @@ -12,5 +12,5 @@ RUN ./manage.py collectstatic --no-input FROM nginx:latest -COPY --from=static-build /app/static /static/_/static/ +COPY --from=static-build /app/static /static/static/ COPY ./passbook/core/nginx.conf /etc/nginx/nginx.conf