From 4e25ea51d00ba8815597a78fc72dd9e6557483ce Mon Sep 17 00:00:00 2001 From: mo8it Date: Fri, 3 Nov 2023 21:23:08 +0100 Subject: [PATCH] Install sqlite3 --- Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Containerfile b/Containerfile index 7525b49..d0bc51c 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,5 @@ FROM docker.io/library/python:3.12-slim +RUN apt update && apt install -y sqlite3 EXPOSE 80