Skip to content

Instantly share code, notes, and snippets.

@SaifRehman
Created April 3, 2018 12:35
Show Gist options
  • Save SaifRehman/eabcf41c421496c5f7679fd6690e9a81 to your computer and use it in GitHub Desktop.
Save SaifRehman/eabcf41c421496c5f7679fd6690e9a81 to your computer and use it in GitHub Desktop.
dockerfile
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