Skip to content

Commit b492104

Browse files
author
Samuel Esan
committed
build: update Dockerfile
1 parent f97dff6 commit b492104

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
FROM node:18.18-alpine as build-env
1+
FROM node:18.20-alpine as build-env
22

33
WORKDIR /app
44

55
COPY ./package.json .
66
COPY ./package-lock.json .
7-
RUN npm ci
7+
# temporarily use '--legacy-peer-deps' until ngrx supports Angular 18
8+
RUN npm ci --legacy-peer-deps
89

910
COPY ./projects/ ./projects
1011
COPY ./src ./src

0 commit comments

Comments
 (0)