Created
January 27, 2016 05:04
-
-
Save schie/47911bb5826bf47ad41e to your computer and use it in GitHub Desktop.
Dockerfile example for hubot with slack adapter
This file contains 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:latest | |
MAINTAINER Dustin Schie, [email protected] | |
RUN mkdir -p /usr/src/app | |
WORKDIR /usr/src/app | |
COPY package.json /usr/src/app/ | |
RUN npm install | |
COPY . /usr/src/app | |
ENV HUBOT_ADAPTER slack | |
ENV HUBOT_SLACK_TOKEN mehhhhhhhhhhhhhhhhhhhhh | |
CMD bin/hubot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment