From 070ec5dbcf939455b4a087713806374dca05a99b Mon Sep 17 00:00:00 2001 From: Nigel Kukard <nkukard@lbsd.net> Date: Mon, 10 Feb 2025 19:19:34 +0000 Subject: [PATCH] fix: add sqlibs to satisfy node reqs --- Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 99c20ff..6990da2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,9 +23,9 @@ FROM registry.conarx.tech/containers/alpine/3.21 ARG VERSION_INFO= -LABEL org.opencontainers.image.authors "Nigel Kukard <nkukard@conarx.tech>" -LABEL org.opencontainers.image.version "3.21" -LABEL org.opencontainers.image.base.name "registry.conarx.tech/containers/alpine/3.21" +LABEL org.opencontainers.image.authors = "Nigel Kukard <nkukard@conarx.tech>" +LABEL org.opencontainers.image.version = "3.21" +LABEL org.opencontainers.image.base.name = "registry.conarx.tech/containers/alpine/3.21" ENV FDC_DISABLE_SUPERVISORD=true @@ -36,7 +36,8 @@ RUN set -eux; \ true "Node"; \ apk add --no-cache \ git \ - npm; \ + npm \ + sqlite-libs sqlite-dev; \ true "Cleanup"; \ rm -f /var/cache/apk/* -- GitLab