This commit is contained in:
dependabot[bot] 2025-06-20 14:15:05 -04:00 committed by GitHub
commit abc9144422
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

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

View file

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