Created
November 21, 2017 09:35
-
-
Save morontt/36ada51c46b2f0f6af1e32269570b60e to your computer and use it in GitHub Desktop.
angular dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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