15 lines
285 B
Docker
15 lines
285 B
Docker
## ANGULAR THEME BUILD
|
|
|
|
FROM node:16-alpine as angular
|
|
|
|
WORKDIR angular
|
|
|
|
COPY inc ./
|
|
|
|
RUN npm install -g @angular/cli
|
|
RUN ng config -g cli.warnings.versionMismatch false
|
|
RUN npm install
|
|
|
|
RUN npm run build:ssr --prod --proxy-config
|
|
|
|
CMD npm run serve:ssr -c production --proxy-config |