From 16c4d20b63bfd97e037d560b6d9ee8780cb41898 Mon Sep 17 00:00:00 2001 From: Jack Jackson Date: Sat, 5 Apr 2025 13:45:05 -0700 Subject: [PATCH] Actually-install sqlite3 for dev target --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0201887..e93dd1f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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