From 73920899de2c99e18fc830917f5d185c41775122 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 2 Jan 2020 20:09:30 +0100 Subject: [PATCH] static: use current pixie image --- static.Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/static.Dockerfile b/static.Dockerfile index 220edde39..8c6c2d619 100644 --- a/static.Dockerfile +++ b/static.Dockerfile @@ -34,8 +34,7 @@ ENV PASSBOOK_POSTGRESQL__USER=passbook ENV PASSBOOK_POSTGRESQL__PASSWORD="EK-5jnKfjrGRm<77" RUN ./manage.py collectstatic --no-input -FROM docker.beryju.org/pixie/server +FROM beryju/pixie:latest -COPY --from=static-build /app/static /data/static/ -COPY --from=static-build /app/static/robots.txt /data/robots.txt -WORKDIR /data +COPY --from=static-build /app/static /web-root/static/ +COPY --from=static-build /app/static/robots.txt /web-root/robots.txt