We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fc0c8a5 + 07a8048 commit a15bffbCopy full SHA for a15bffb
Dockerfile-prod
@@ -1,6 +1,6 @@
1
# Based on https://mherman.org/blog/dockerizing-an-angular-app/
2
# base image
3
-FROM node:14-alpine as builder
+FROM node:18-alpine as builder
4
5
# removed this for now
6
# install chrome for protractor tests
@@ -17,7 +17,7 @@ ENV PATH /app/node_modules/.bin:$PATH
17
# install and cache app dependencies
18
COPY package.json /app/package.json
19
RUN npm install
20
-RUN npm install -g @angular/cli@14.2.3
+RUN npm install -g @angular/cli@17.3.8
21
22
# add app
23
COPY . /app
0 commit comments