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
1 changed files with 1 additions and 1 deletions

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