File tree 4 files changed +30
-3
lines changed
4 files changed +30
-3
lines changed Original file line number Diff line number Diff line change
1
+ FROM node:18 as build
2
+
3
+ WORKDIR /app
4
+
5
+ ENV PATH /app/node_modules/.bin:$PATH
6
+
7
+ COPY package.json /app/package.json
8
+ COPY package-lock.json /app/package-lock.json
9
+ RUN npm install
10
+ RUN npm install -g @angular/cli
11
+
12
+ COPY . /app
13
+ RUN npm run build
14
+
15
+ FROM nginx:1.23-alpine
16
+ COPY nginx.conf /etc/nginx/conf.d/default.conf
17
+ COPY --from=build /app/dist/sk-health /usr/share/nginx/html
18
+
19
+ EXPOSE 80
Original file line number Diff line number Diff line change 41
41
"budgets" : [
42
42
{
43
43
"type" : " initial" ,
44
- "maximumWarning" : " 500kb " ,
45
- "maximumError" : " 1mb "
44
+ "maximumWarning" : " 2mb " ,
45
+ "maximumError" : " 5mb "
46
46
},
47
47
{
48
48
"type" : " anyComponentStyle" ,
Original file line number Diff line number Diff line change
1
+ server {
2
+ listen 80 ;
3
+ location / {
4
+ root /usr/share/nginx/html;
5
+ index index.html index.htm;
6
+ try_files $uri $uri / /index.html =404 ;
7
+ }
8
+ }
Original file line number Diff line number Diff line change 5
5
"ng" : " ng" ,
6
6
"config" : " npx ts-node ./src/assets/setEnv.ts" ,
7
7
"start" : " npm run config -- --environment=dev && ng serve" ,
8
- "build" : " npm run config -- --environment=prod && ng build --prod " ,
8
+ "build" : " npm run config -- --environment=prod && ng build --configuration production --aot " ,
9
9
"watch" : " ng build --watch --configuration development" ,
10
10
"test" : " ng test" ,
11
11
"lint" : " ng lint"
You can’t perform that action at this time.
0 commit comments