From 504ef167f1fc136ba7afc015425db42434934d16 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 16:32:14 +0000 Subject: [PATCH] chore(deps): bump node from 18-alpine to 23-alpine Bumps node from 18-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 f06f1d6..38defab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use the official Node.js image as the base image -FROM node:18-alpine AS base +FROM node:23-alpine AS base # Set the working directory WORKDIR /app @@ -17,7 +17,7 @@ COPY . . RUN npm run build # Use a smaller base image for the final stage -FROM node:18-alpine AS final +FROM node:23-alpine AS final # Set the working directory WORKDIR /app