remove sqlite3 from dockerfile

Signed-off-by: Manabu McCloskey <manabu.mccloskey@gmail.com>
This commit is contained in:
Manabu McCloskey 2024-09-19 15:36:17 +00:00
parent f8eb826435
commit 23769027cd

View file

@ -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 \