Skip to content

Instantly share code, notes, and snippets.

@dgkanatsios
Last active July 6, 2017 14:56
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 dgkanatsios/81f67548506dc4e2552dd74b5d07e20d to your computer and use it in GitHub Desktop.
Save dgkanatsios/81f67548506dc4e2552dd74b5d07e20d to your computer and use it in GitHub Desktop.
FROM node:boron
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY package.json /usr/src/app/
RUN npm install
COPY samplebot.js /usr/src/app
EXPOSE 3978
CMD [ "node", "samplebot" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment