diff --git a/Dockerfile b/Dockerfile index 652647be..62fb3c23 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ ENV IS_DOCKER=1 ENV IS_PROD=${IS_PROD_ARG} ARG GITHUB_SHA_ARG -ENV GITHUB_SHA=$GITHUB_SHA_ARG +ENV GITHUB_SHA=${GITHUB_SHA_ARG} # Copy project COPY . . @@ -32,7 +32,7 @@ RUN /root/.local/bin/poetry config virtualenvs.in-project true && \ rm -rf ~/.cache/pypoetry/{cache,artifacts} # collect static files -RUN /root/.local/bin/poetry run python bloom_nofos/manage.py collectstatic --noinput --verbosity 1 +RUN /root/.local/bin/poetry run python bloom_nofos/manage.py collectstatic --noinput --verbosity 0 EXPOSE $PORT