Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependency updates #2107

Merged
merged 14 commits into from
Nov 29, 2023
12 changes: 7 additions & 5 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
],
"stylePreprocessorOptions": {
"includePaths": [
"node_modules/"
"node_modules/",
"src/styles"
]
},
"vendorChunk": true,
Expand Down Expand Up @@ -87,18 +88,18 @@
"options": {},
"configurations": {
"production": {
"browserTarget": "ndb-core:build:production"
"buildTarget": "ndb-core:build:production"
},
"development": {
"browserTarget": "ndb-core:build:development"
"buildTarget": "ndb-core:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "ndb-core:build"
"buildTarget": "ndb-core:build"
}
},
"test": {
Expand All @@ -116,7 +117,8 @@
],
"stylePreprocessorOptions": {
"includePaths": [
"node_modules/"
"node_modules/",
"src/styles"
]
},
"assets": [
Expand Down
4 changes: 2 additions & 2 deletions build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
# Run the following commands from the root folder to build, run and kill the application
# >> docker build -f build/Dockerfile -t aam-digital .
# >> docker run -p=80:80 aam-digital
FROM node:16.14.2-alpine3.15 AS builder
FROM node:18.16.1-alpine3.18 AS builder
WORKDIR /app

COPY package*.json ./
RUN npm ci --no-progress

RUN $(npm bin)/ng version
RUN npm run-script ng version

COPY . .

Expand Down
Loading