Skip to content

Instantly share code, notes, and snippets.

@franciscotfmc
Created September 26, 2017 14:07
Show Gist options
  • Save franciscotfmc/50f93b4680c018c4dffe4915245c3c9a to your computer and use it in GitHub Desktop.
Save franciscotfmc/50f93b4680c018c4dffe4915245c3c9a to your computer and use it in GitHub Desktop.
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