We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f586673 commit 1fdbf49Copy full SHA for 1fdbf49
frontend/Dockerfile
@@ -1,11 +1,11 @@
1
-# Create image based off of the official Node 10 image
+# Create image based off of the official Node 22 image
2
FROM node:22-alpine as builder
3
4
# Copy dependency definitions
5
COPY package*.json ./
6
7
## installing and Storing node modules on a separate layer will prevent unnecessary npm installs at each build
8
-## --legacy-peer-deps as ngx-bootstrap still depends on Angular 14
+## --legacy-peer-deps as ngx-bootstrap still depends on Angular 18
9
RUN npm install --legacy-peer-deps && mkdir /app && mv ./node_modules /app/node_modules
10
11
# Change directory so that our commands run inside this new directory
0 commit comments