chore: bump Dockerfile base to node:24-alpine and add git for npm git-URL deps #10

Merged
brendan merged 1 commits from chore/dockerfile-git-and-node24 into main 2026-05-12 18:48:49 +00:00

View File

@@ -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