Skip to content

Instantly share code, notes, and snippets.

@kevinjqiu
Created July 24, 2016 22:29
Show Gist options
  • Save kevinjqiu/aa35f98f62b874bfa3977df679d60560 to your computer and use it in GitHub Desktop.
Save kevinjqiu/aa35f98f62b874bfa3977df679d60560 to your computer and use it in GitHub Desktop.
FROM node:0.12.2
COPY . /app
RUN npm install -g bower
RUN cd /app; npm install; bower install --allow-root;
WORKDIR /app
VOLUME ["/certs"]
EXPOSE 5000
CMD ["node", "/app/app.js"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment