diff --git a/src/abacus-backoffice/Dockerfile b/src/abacus-backoffice/Dockerfile index f3a8239f56..ad71c1ec8b 100644 --- a/src/abacus-backoffice/Dockerfile +++ b/src/abacus-backoffice/Dockerfile @@ -1,5 +1,5 @@ # Install dependencies only when needed -FROM node:21.1.0-alpine AS deps +FROM node:21.2.0-alpine AS deps # Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. RUN apk add --no-cache libc6-compat WORKDIR /app @@ -7,7 +7,7 @@ COPY package.json ./ RUN yarn install # --immutable # Rebuild the source code only when needed -FROM node:21.1.0-alpine AS builder +FROM node:21.2.0-alpine AS builder WORKDIR /app COPY . . COPY --from=deps /app/node_modules ./node_modules @@ -16,7 +16,7 @@ RUN --mount=type=secret,id=SENTRY_AUTH_TOKEN \ yarn build && yarn install # --immutable # Production image, copy all the files and run next -FROM node:21.1.0-alpine AS runner +FROM node:21.2.0-alpine AS runner WORKDIR /app ENV NODE_ENV production diff --git a/src/abacus-kochka/Dockerfile b/src/abacus-kochka/Dockerfile index 411d10f86b..2155f30f1f 100644 --- a/src/abacus-kochka/Dockerfile +++ b/src/abacus-kochka/Dockerfile @@ -1,5 +1,5 @@ # Install dependencies only when needed -FROM node:21.1.0-alpine AS deps +FROM node:21.2.0-alpine AS deps # Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. RUN apk add --no-cache libc6-compat WORKDIR /app @@ -7,7 +7,7 @@ COPY package.json ./ RUN yarn install # --immutable # Rebuild the source code only when needed -FROM node:21.1.0-alpine AS builder +FROM node:21.2.0-alpine AS builder WORKDIR /app COPY . . COPY --from=deps /app/node_modules ./node_modules @@ -16,7 +16,7 @@ RUN --mount=type=secret,id=SENTRY_AUTH_TOKEN \ yarn build && yarn install # --immutable # Production image, copy all the files and run next -FROM node:21.1.0-alpine AS runner +FROM node:21.2.0-alpine AS runner WORKDIR /app ENV NODE_ENV production diff --git a/src/abacus-tools/Dockerfile b/src/abacus-tools/Dockerfile index 9f5dcb036d..b6b6c31a37 100644 --- a/src/abacus-tools/Dockerfile +++ b/src/abacus-tools/Dockerfile @@ -1,5 +1,5 @@ # Install dependencies only when needed -FROM node:21.1.0-alpine AS deps +FROM node:21.2.0-alpine AS deps # Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. RUN apk add --no-cache libc6-compat WORKDIR /app @@ -7,14 +7,14 @@ COPY package.json ./ RUN yarn install # --immutable # Rebuild the source code only when needed -FROM node:21.1.0-alpine AS builder +FROM node:21.2.0-alpine AS builder WORKDIR /app COPY . . COPY --from=deps /app/node_modules ./node_modules RUN yarn build && yarn install # --immutable # Production image, copy all the files and run next -FROM node:21.1.0-alpine AS runner +FROM node:21.2.0-alpine AS runner WORKDIR /app ENV NODE_ENV production diff --git a/src/mrtnzlml-meta/Dockerfile b/src/mrtnzlml-meta/Dockerfile index 57b19e21d2..06d182f52f 100644 --- a/src/mrtnzlml-meta/Dockerfile +++ b/src/mrtnzlml-meta/Dockerfile @@ -1,5 +1,5 @@ # Install dependencies only when needed -FROM node:21.1.0-alpine AS deps +FROM node:21.2.0-alpine AS deps # Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. RUN apk add --no-cache libc6-compat WORKDIR /app @@ -7,7 +7,7 @@ COPY package.json ./ RUN yarn install # --immutable # Rebuild the source code only when needed -FROM node:21.1.0-alpine AS builder +FROM node:21.2.0-alpine AS builder WORKDIR /app COPY . . COPY --from=deps /app/node_modules ./node_modules @@ -16,7 +16,7 @@ RUN --mount=type=secret,id=SENTRY_AUTH_TOKEN \ yarn build && yarn install # --immutable # Production image, copy all the files and run Docusaurus -FROM node:21.1.0-alpine AS runner +FROM node:21.2.0-alpine AS runner WORKDIR /app ENV NODE_ENV production