gabrielaraujof/angular-cli

By gabrielaraujof

Updated over 7 years ago

Docker image based on NodeJS official image, with AngularCLI

Image
4

3.9K

Dockerfile
FROM node:boron LABEL maintainer "Gabriel Araujo <contact@gbiel.com>" USER root RUN mkdir /home/.npm-global ENV PATH=/home/.npm-global/bin:$PATH ENV NPM_CONFIG_PREFIX=/home/.npm-global # Install node dependencies RUN npm install --quiet --no-progress -g @angular/cli@latest firebase-tools RUN npm cache clean --force