From 2818f8d4051bb0007bfaded9901d5d7832f820b2 Mon Sep 17 00:00:00 2001 From: Ayala Dviri Date: Thu, 6 Feb 2025 21:39:43 +0200 Subject: [PATCH] Install sqlite and sqlite-dev directly --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7a28a37..b9b0ed5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM ghcr.io/orcasecurity/orca-cli:1 -RUN apk --no-cache --update add bash nodejs npm +RUN apk --no-cache --update add bash nodejs npm sqlite sqlite-dev WORKDIR /app # Docker tries to cache each layer as much as possible, to increase building speed.