Skip to content

Commit 83409ce

Browse files
Update bootstrap
1 parent 0600c0e commit 83409ce

File tree

77 files changed

+2164
-2587
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+2164
-2587
lines changed

.github/workflows/on-push-pr.action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- uses: actions/setup-node@v3
3030
name: Set NodeJS version
3131
with:
32-
node-version: 18
32+
node-version: 20
3333
- name: Install packages
3434
run: "npm ci"
3535
- name: Build source

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Based on https://mherman.org/blog/dockerizing-an-angular-app/
22
# base image
3-
FROM node:18-alpine as DEV
3+
FROM node:20-alpine as DEV
44

55
# removed this for now
66
# install chrome for protractor tests
@@ -17,7 +17,7 @@ ENV PATH /app/node_modules/.bin:$PATH
1717
# install and cache app dependencies
1818
COPY package.json /app/package.json
1919
RUN npm install
20-
RUN npm install -g @angular/cli@17.3.8
20+
RUN npm install -g @angular/cli@20.3.7
2121

2222
# add app
2323
COPY . /app

Dockerfile-prod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Based on https://mherman.org/blog/dockerizing-an-angular-app/
22
# base image
3-
FROM node:18-alpine as builder
3+
FROM node:20-alpine as builder
44

55
# removed this for now
66
# install chrome for protractor tests
@@ -17,7 +17,7 @@ ENV PATH /app/node_modules/.bin:$PATH
1717
# install and cache app dependencies
1818
COPY package.json /app/package.json
1919
RUN npm install
20-
RUN npm install -g @angular/cli@17.3.8
20+
RUN npm install -g @angular/cli@20.3.7
2121

2222
# add app
2323
COPY . /app

0 commit comments

Comments
 (0)