Skip to content

Instantly share code, notes, and snippets.

@phillro
Created November 13, 2015 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phillro/6548bb50bea96e55e073 to your computer and use it in GitHub Desktop.
Save phillro/6548bb50bea96e55e073 to your computer and use it in GitHub Desktop.
FROM node:4.2.1
# Bundle app source
COPY . /src
# Install app dependencies
RUN cd /src; npm install;
CMD [rm, "/src/credentials.json"]
EXPOSE 9070
CMD ["node", "/src/app/server.js"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment