From 23769027cd0ef83606b0a6c975b7c0eb8d02d348 Mon Sep 17 00:00:00 2001 From: Manabu McCloskey Date: Thu, 19 Sep 2024 15:36:17 +0000 Subject: [PATCH] remove sqlite3 from dockerfile Signed-off-by: Manabu McCloskey --- Dockerfile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 472b6a8..c434a8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,13 +57,6 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ apt-get install -y --no-install-recommends python3 g++ build-essential && \ yarn config set python /usr/bin/python3 -# Install sqlite3 dependencies. You can skip this if you don't use sqlite3 in the image, -# in which case you should also move better-sqlite3 to "devDependencies" in package.json. -RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ - --mount=type=cache,target=/var/lib/apt,sharing=locked \ - apt-get update && \ - apt-get install -y --no-install-recommends libsqlite3-dev - # Add kubectl for the kube apply plugin. # Add mkdocs for the TechDocs plugin. RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \