Fix docker build with new domain check

This commit is contained in:
Andrew Godwin 2023-01-14 12:24:15 -07:00
parent 3f3e815407
commit f69c7304c1

View file

@ -41,7 +41,7 @@ COPY . /takahe
WORKDIR /takahe
RUN TAKAHE_DATABASE_SERVER="postgres://x@example.com/x" TAKAHE_SECRET_KEY="takahe" python3 manage.py collectstatic --noinput
RUN TAKAHE_DATABASE_SERVER="postgres://x@example.com/x" TAKAHE_SECRET_KEY="takahe" TAKAHE_MAIN_DOMAIN="static.test" python3 manage.py collectstatic --noinput
EXPOSE 8000