Actually-install sqlite3 for dev target

This commit is contained in:
Jack Jackson 2025-04-05 13:45:05 -07:00
parent c6a279a703
commit 16c4d20b63

View File

@ -63,7 +63,7 @@ FROM base AS dev
# You probably want sqlite3 to poke around with the database anyway
USER root
RUN apt update
RUN apt install sqlite3
RUN apt install -y sqlite3
USER appuser
# Expects that the source code will be mounted into the container
CMD uvicorn app:app --reload --host 0.0.0.0 --log-config ./local-run-log-config.yaml