From dd9617598f52b94fb0b7986cdb67aaac91ba2ba7 Mon Sep 17 00:00:00 2001 From: dswbx Date: Sun, 14 Sep 2025 14:07:56 +0200 Subject: [PATCH] bump Dockerfile to use bknd 0.17.1 Updated the default bknd version to 0.17.1 and included the `jsonv-ts` dependency in the Dockerfile. --- docker/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 132289a..c946b6a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /app # define bknd version to be used as: # `docker build --build-arg VERSION= -t bknd .` -ARG VERSION=0.13.0 +ARG VERSION=0.17.1 # Install & copy required cli RUN npm install --omit=dev bknd@${VERSION} @@ -16,10 +16,10 @@ FROM node:24-alpine WORKDIR /app -# Install pm2 and libsql +# Install required dependencies RUN npm install -g pm2 RUN echo '{"type":"module"}' > package.json -RUN npm install @libsql/client +RUN npm install jsonv-ts @libsql/client # Create volume and init args VOLUME /data