cear-audiolab/Dockerfile

16 lines
286 B
Docker
Raw Normal View History

2023-10-31 03:24:17 +01:00
## 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