Skip to content

Commit 6565f4a

Browse files
Utkarsh RahimUtkarsh Rahim
Utkarsh Rahim
authored and
Utkarsh Rahim
committedJun 19, 2023
Docker file changes
1 parent f800c78 commit 6565f4a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
FROM appveen/angular.base:11
2+
FROM node:18-alpine AS node
23

34
WORKDIR /app
45

56
COPY package.json .
6-
RUN npm install
7+
RUN npm install --legacy-peer-deps
78

89
COPY . .
910

10-
RUN ng build --prod
11+
RUN npm run build --production
1112

1213
# RUN npm run build

0 commit comments

Comments
 (0)
Please sign in to comment.