From 1122d502a56e730e341e23b068f29a70c7b7d70d Mon Sep 17 00:00:00 2001 From: Oleg Kunitsyn Date: Mon, 27 Oct 2025 13:46:18 +0100 Subject: [PATCH 1/2] [NNP-78] Remove sqlite --- Earthfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Earthfile b/Earthfile index d6996db7..9d614acf 100644 --- a/Earthfile +++ b/Earthfile @@ -155,7 +155,7 @@ swagger: RUN rm -f /usr/share/nginx/html/yaml/odmApi.yaml RUN apk add bash --no-cache && \ rewrite_entrypoint.sh && \ - apk del bash + apk del bash sqlite-libs nodejs # Remove merged api spec # IDK why it's required From d994980fe3d35ff7f36825b4e0222da0131e6afc Mon Sep 17 00:00:00 2001 From: Oleg Kunitsyn Date: Mon, 27 Oct 2025 14:07:30 +0100 Subject: [PATCH 2/2] [NNP-78] Update instead of removing --- Earthfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Earthfile b/Earthfile index 9d614acf..08980a08 100644 --- a/Earthfile +++ b/Earthfile @@ -155,7 +155,9 @@ swagger: RUN rm -f /usr/share/nginx/html/yaml/odmApi.yaml RUN apk add bash --no-cache && \ rewrite_entrypoint.sh && \ - apk del bash sqlite-libs nodejs + apk del bash && \ + echo "http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories && \ + apk update && apk upgrade sqlite-libs # Remove merged api spec # IDK why it's required