Update Dockerfile.pg

This commit is contained in:
Marvin 2025-06-10 15:59:30 +02:00 committed by GitHub
parent ff9e5a383b
commit b1cbb1b50f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,4 @@
ARG NODE_VERSION="20-alpine"
FROM node:${NODE_VERSION} AS builder
FROM node:20-alpine AS builder
WORKDIR /app
@ -15,7 +14,7 @@ RUN npx drizzle-kit generate --dialect postgresql --schema ./server/db/pg/schema
RUN npm run build:pg
FROM node:${NODE_VERSION} AS runner
FROM node:20-alpine AS runner
WORKDIR /app