Skip to content

Instantly share code, notes, and snippets.

@schie
Created January 27, 2016 05:04
Show Gist options
  • Save schie/47911bb5826bf47ad41e to your computer and use it in GitHub Desktop.
Save schie/47911bb5826bf47ad41e to your computer and use it in GitHub Desktop.
Dockerfile example for hubot with slack adapter
FROM node:latest
MAINTAINER Dustin Schie, dschie@atni.com
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