Created
April 3, 2018 12:35
-
-
Save SaifRehman/eabcf41c421496c5f7679fd6690e9a81 to your computer and use it in GitHub Desktop.
dockerfile
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:carbon | |
WORKDIR /usr/src/app | |
COPY package*.json ./ | |
COPY privkey0.json ./ | |
COPY .env-node1 ./ | |
RUN npm install | |
COPY . . | |
EXPOSE 30090 30092 | |
CMD [ "node", "node1.js" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment