Skip to content

Instantly share code, notes, and snippets.

@dgkanatsios
Last active July 6, 2017 14:56
Embed
What would you like to do?
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