Created
September 26, 2017 14:07
-
-
Save franciscotfmc/50f93b4680c018c4dffe4915245c3c9a to your computer and use it in GitHub Desktop.
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.11.3 | |
ENV HOME=/home/app | |
RUN mkdir $HOME | |
WORKDIR $HOME | |
RUN npm install --global @angular/cli | |
---- | |
client: | |
build: . | |
command: ng serve | |
environment: | |
NODE_ENV: development | |
ports: | |
- '3000:3000' | |
- '3001:3001' | |
volumes: | |
- .:/home/app/ | |
working_dir: /home/app/client |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment