From 07a8048d926db790a213001d8686dd0601349588 Mon Sep 17 00:00:00 2001 From: August Andersen Date: Wed, 6 Nov 2024 10:18:45 +0100 Subject: [PATCH] Updated dockerfile-prod to match the new angular 17 version and node 18. --- Dockerfile-prod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile-prod b/Dockerfile-prod index b5fde3f1..5d67b0a9 100644 --- a/Dockerfile-prod +++ b/Dockerfile-prod @@ -1,6 +1,6 @@ # Based on https://mherman.org/blog/dockerizing-an-angular-app/ # base image -FROM node:14-alpine as builder +FROM node:18-alpine as builder # removed this for now # install chrome for protractor tests @@ -17,7 +17,7 @@ ENV PATH /app/node_modules/.bin:$PATH # install and cache app dependencies COPY package.json /app/package.json RUN npm install -RUN npm install -g @angular/cli@14.2.3 +RUN npm install -g @angular/cli@17.3.8 # add app COPY . /app