Created
November 13, 2015 21:03
-
-
Save phillro/6548bb50bea96e55e073 to your computer and use it in GitHub Desktop.
This file contains 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: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