@@ -57,7 +57,7 @@
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/leaflet": "^1.5.17",
- "@types/node": "^12.11.1",
+ "@types/node": "12.20.0",
"chai": "^4.2.0",
"codelyzer": "^5.1.2",
"jasmine-core": "~3.5.0",
@@ -3,11 +3,12 @@ FROM node:14-alpine AS builder
WORKDIR /app
COPY angular-client/package*.json ./
-RUN npm ci
+RUN npm install
COPY angular-client/ ./
RUN npm run build:ssr
+
FROM node:14-alpine AS runner