Fix collectstatic

This commit is contained in:
Andrew Godwin 2022-12-15 12:30:23 -07:00
parent 1130c23b1e
commit c5f52581c9

View file

@ -32,7 +32,7 @@ COPY . /takahe
WORKDIR /takahe
RUN TAKAHE_DATABASE_SERVER="postgres://x@example.com/x" python3 manage.py collectstatic --noinput
RUN TAKAHE_DATABASE_SERVER="postgres://x@example.com/x" TAKAHE_DEBUG=true python3 manage.py collectstatic --noinput
EXPOSE 8000