Merge pull request 'chore: bump Dockerfile base to node:24-alpine and add git for npm git-URL deps' (#10) from chore/dockerfile-git-and-node24 into main
All checks were successful
Deploy to birb co. production / deploy (push) Successful in 47s

This commit was merged in pull request #10.
This commit is contained in:
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