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