diff --git a/backend/Dockerfile b/backend/Dockerfile index 9fd4c2ba6..4a3b47390 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -11,7 +11,7 @@ RUN pip install bailo -r requirements.txt RUN make dirhtml -FROM node:22.6.0-alpine AS installer +FROM node:23.5.0-alpine AS installer RUN apk add --no-cache libc6-compat RUN apk update @@ -24,7 +24,7 @@ RUN --mount=type=cache,target=/cache/npm npm install --cache=/cache/npm COPY . . RUN npm run build -FROM node:22.6.0-alpine AS runner +FROM node:23.5.0-alpine AS runner RUN apk update RUN apk add --no-cache libc6-compat ca-certificates diff --git a/backend/Dockerfile.dev b/backend/Dockerfile.dev index b419fe982..cf2d5002d 100644 --- a/backend/Dockerfile.dev +++ b/backend/Dockerfile.dev @@ -10,7 +10,7 @@ RUN pip install bailo -r requirements.txt RUN make dirhtml -FROM node:22.6.0-alpine AS installer +FROM node:23.5.0-alpine AS installer RUN apk add --no-cache libc6-compat ca-certificates RUN apk update