Skip to content

Instantly share code, notes, and snippets.

@morontt
Created November 21, 2017 09:35
Show Gist options
  • Save morontt/36ada51c46b2f0f6af1e32269570b60e to your computer and use it in GitHub Desktop.
Save morontt/36ada51c46b2f0f6af1e32269570b60e to your computer and use it in GitHub Desktop.
angular dockerfile
FROM node:6-wheezy
RUN npm install -g gulp-cli && npm install -g @angular/cli
RUN mkdir /ng-app
VOLUME ["/ng-app"]
WORKDIR "/ng-app"
EXPOSE 4200
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment