From 043f573f7801890d66e4391e6b3d3637bd2d4fb8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 19 Oct 2024 01:05:07 +0000 Subject: [PATCH] Bump node from 22-alpine to 23-alpine Bumps node from 22-alpine to 23-alpine. --- updated-dependencies: - dependency-name: node dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0093ade3..db3cf317 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22-alpine as build +FROM node:23-alpine as build # Create app directory WORKDIR /app COPY package.json yarn.lock ./ @@ -6,7 +6,7 @@ RUN apk add --no-cache git && yarn --frozen-lockfile COPY . . RUN yarn compile -FROM node:22-alpine as runner +FROM node:23-alpine as runner # Bundle app source WORKDIR /app COPY --from=build /app/lib /app/lib