Quick fix for TAKAHE_SECRET_KEY in Dockerfile (#309)

This commit is contained in:
Kromonos 2022-12-29 05:56:11 +01:00 committed by GitHub
parent 6983763786
commit d525a2f465
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,7 +39,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_SECRET_KEY="takahe" python3 manage.py collectstatic --noinput
EXPOSE 8000