Skip to content

Instantly share code, notes, and snippets.

@scott2449
Created November 16, 2018 15:07
Show Gist options
  • Save scott2449/823f060fd7b7bc097acd0ae9cd142d19 to your computer and use it in GitHub Desktop.
Save scott2449/823f060fd7b7bc097acd0ae9cd142d19 to your computer and use it in GitHub Desktop.
FROM node:8
USER node
WORKDIR /home/node
COPY index.js .
COPY package.json .
RUN npm install
#some TLS stuff will go here later ;)
CMD node index.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment