Compare commits
No commits in common. "d8e360d7f2ec8fc1be99aef623e3eeb6de78bc99" and "76ec6df89159a4812dbfec174b3b3341a385375e" have entirely different histories.
d8e360d7f2
...
76ec6df891
@ -0,0 +1,19 @@
|
|||||||
|
|
||||||
|
# angular build
|
||||||
|
FROM node:16.20.2-alpine3.18 as build
|
||||||
|
LABEL stage=app
|
||||||
|
LABEL build_id=$BUILD_ID
|
||||||
|
WORKDIR /usr/src/app
|
||||||
|
COPY package*.json ./
|
||||||
|
RUN npm install
|
||||||
|
COPY . ./
|
||||||
|
ENV NODE_OPTIONS="--max_old_space_size=4096"
|
||||||
|
RUN npm run build
|
||||||
|
|
||||||
|
# configuring nginx web-server
|
||||||
|
|
||||||
|
FROM nginx:1.17.1-alpine
|
||||||
|
#COPY --from=code /repo/cns-beta/springboot/angular-clarity-master/angular-clarity-master/default.conf /etc/nginx/conf.d/default.conf
|
||||||
|
COPY --from=build /usr/src/app/dist /usr/share/nginx/html
|
||||||
|
#RUN ls -a /usr/share/nginx/html/
|
||||||
|
EXPOSE 80
|
||||||
@ -30,19 +30,16 @@
|
|||||||
"src/favicon.ico",
|
"src/favicon.ico",
|
||||||
"src/assets"
|
"src/assets"
|
||||||
],
|
],
|
||||||
|
|
||||||
"styles": [
|
"styles": [
|
||||||
"node_modules/@clr/icons/clr-icons.min.css",
|
"node_modules/@clr/icons/clr-icons.min.css",
|
||||||
"node_modules/@clr/ui/clr-ui.min.css",
|
"node_modules/@clr/ui/clr-ui.min.css",
|
||||||
"src/styles.scss",
|
"src/styles.scss",
|
||||||
"node_modules/ngx-toastr/toastr.css",
|
"node_modules/ngx-toastr/toastr.css"
|
||||||
"./node_modules/grapesjs/dist/css/grapes.min.css"
|
|
||||||
],
|
],
|
||||||
"scripts": [
|
"scripts": [
|
||||||
"node_modules/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js",
|
"node_modules/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js",
|
||||||
"node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js",
|
"node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js",
|
||||||
"node_modules/@clr/icons/clr-icons.min.js",
|
"node_modules/@clr/icons/clr-icons.min.js"
|
||||||
"./node_modules/grapesjs/dist/grapes.min.js"
|
|
||||||
],
|
],
|
||||||
"vendorChunk": true,
|
"vendorChunk": true,
|
||||||
"extractLicenses": false,
|
"extractLicenses": false,
|
||||||
@ -134,4 +131,4 @@
|
|||||||
"cli": {
|
"cli": {
|
||||||
"analytics": "6e7a3b23-d894-47dd-8b4b-7fdeba9a5abd"
|
"analytics": "6e7a3b23-d894-47dd-8b4b-7fdeba9a5abd"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
14863
visaproject-front-f/authsec_angular/frontend/angular-clarity-master/package-lock.json
generated
Normal file
14863
visaproject-front-f/authsec_angular/frontend/angular-clarity-master/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -44,8 +44,6 @@
|
|||||||
"dom-to-image": "^2.6.0",
|
"dom-to-image": "^2.6.0",
|
||||||
"express": "^4.18.2",
|
"express": "^4.18.2",
|
||||||
"file-saver": "^2.0.5",
|
"file-saver": "^2.0.5",
|
||||||
"grapesjs": "^0.22.7",
|
|
||||||
"grapesjs-preset-webpage": "^1.0.3",
|
|
||||||
"highcharts": "^11.1.0",
|
"highcharts": "^11.1.0",
|
||||||
"highcharts-angular": "^3.1.2",
|
"highcharts-angular": "^3.1.2",
|
||||||
"jquery": "^3.7.1",
|
"jquery": "^3.7.1",
|
||||||
|
|||||||
Binary file not shown.
@ -10,8 +10,6 @@
|
|||||||
"experimentalDecorators": true,
|
"experimentalDecorators": true,
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"importHelpers": true,
|
"importHelpers": true,
|
||||||
"allowSyntheticDefaultImports":true,
|
|
||||||
"skipLibCheck": true,
|
|
||||||
"target": "ES2022",
|
"target": "ES2022",
|
||||||
"module": "ES2022",
|
"module": "ES2022",
|
||||||
"lib": [
|
"lib": [
|
||||||
@ -20,4 +18,4 @@
|
|||||||
],
|
],
|
||||||
"useDefineForClassFields": false
|
"useDefineForClassFields": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user