docker db connection fixed

This commit is contained in:
2025-09-02 16:43:35 +02:00
parent 4331453aa7
commit 8558e6b434
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
FROM node:18-alpine AS builder
FROM node:22-alpine AS builder
WORKDIR /app
@@ -17,7 +17,7 @@ COPY src ./src
RUN npm run build
# Stage production
FROM node:18-alpine AS production
FROM node:22-alpine AS production
WORKDIR /app