From 5646b4fc37ed1c5a447c352ad5926a30ea8ad559 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Oct 2022 23:06:38 +0000 Subject: [PATCH] deps: bump node from 14-alpine to 19-alpine Bumps node from 14-alpine to 19-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 7f3312e..261fb4b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # pull official base image -FROM node:14-alpine as builder +FROM node:19-alpine as builder # set working directory @@ -36,7 +36,7 @@ RUN npm run build # Place build files in an easy to find location :) RUN cp -r ./build /app/build -FROM node:14-alpine as runtime +FROM node:19-alpine as runtime RUN npm i -g serve USER node