From 152adb72a60d041d0ce35b53dc6e1faac4cc20c6 Mon Sep 17 00:00:00 2001 From: Joseph Garrone Date: Wed, 7 Feb 2024 10:49:36 +0100 Subject: [PATCH] Use Node 18 to build the image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c46b4a6..d506992 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # build environment -FROM node:14-alpine as build +FROM node:18-alpine as build WORKDIR /app COPY package.json yarn.lock ./ RUN yarn install --frozen-lockfile