Use the local Angular CLI

This commit is contained in:
Cameron Cordes
2020-03-06 15:45:45 -05:00
committed by Cameron Cordes
parent 0ae1debc4a
commit 056bedc599

View File

@@ -1,4 +1,5 @@
FROM node:10.19.0-alpine3.9
WORKDIR /app
VOLUME /app /app/dist
ENTRYPOINT npm install && npm install -g @angular/cli@8.2.7 && ng build --prod
ENTRYPOINT npm install && export PATH=$PATH:/app/node_modules/.bin \
&& ng build --prod