From 2df75467796743418be1f0dcea3d5b62fd796581 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Tue, 12 May 2026 11:45:02 -0700 Subject: [PATCH] chore: bump Dockerfile base to node:24-alpine and add git for npm git-URL deps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Deploy CI was failing on `npm ci` because the base image lacked `git`, which npm needs to resolve `bchen-sqlite-migrate` from its git URL. Bumping the base from node:22-alpine to node:24-alpine in the same change aligns the image with authd's stack (npm 11.x) — both native deps support Node 24 prebuilds. --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9d1348f..45c1223 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM node:22-alpine +FROM node:24-alpine -# Install native build tools for bcrypt -RUN apk add --no-cache python3 make g++ +# Install native build tools for bcrypt/better-sqlite3 + git for npm git-URL deps +RUN apk add --no-cache python3 make g++ git WORKDIR /app -- 2.49.1