Skip to content

Commit

Permalink
fix(api): add sqllite back to dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-schultz committed May 31, 2023
1 parent e8683a8 commit aab1622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ ENV PATH="/usr/src/.venv/bin/:${PATH}"

WORKDIR /app

RUN STATIC_ROOT=/app/static SECRET_KEY=secret_is_irelevent_here python manage.py collectstatic --noinput
RUN STATIC_ROOT=/app/static SECRET_KEY=secret_is_irelevent_here DATABASE_URL=sqlite:////dunmmy_db.sqlite3 python manage.py collectstatic --noinput

CMD ["gunicorn", "-w", "4", "-k", "uvicorn.workers.UvicornWorker", "scorer.asgi:application", "-b", "0.0.0.0:8002"]

0 comments on commit aab1622

Please sign in to comment.