Bump node from 20-alpine to 24-alpine in the major-updates group (#111)

Bumps the major-updates group with 1 update: node.


Updates `node` from 20-alpine to 24-alpine

---
updated-dependencies:
- dependency-name: node
  dependency-version: 24-alpine
  dependency-type: direct:production
  dependency-group: major-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2025-06-01 14:12:08 +02:00 committed by GitHub
parent 858c809514
commit be0c7444e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,4 @@
FROM node:20-alpine AS builder
FROM node:24-alpine AS builder
WORKDIR /app
@ -12,7 +12,7 @@ RUN npx drizzle-kit generate --dialect sqlite --schema ./server/db/schemas/ --ou
RUN npm run build
FROM node:20-alpine AS runner
FROM node:24-alpine AS runner
WORKDIR /app