1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/hubot/arm/Dockerfile
2017-04-21 15:52:11 +08:00

40 lines
1006 B
Docker

#
# Dockerfile for hubot-arm
#
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
ENV HUBOT_NAME=Hubot
ENV HUBOT_ADAPTER=slack
ENV HUBOT_DESCRIPTION=$HUBOT_NAME-$HUBOT_ADAPTER
ENV HUBOT_SLACK_TOKEN=
RUN set -xe \
&& apk add --update ca-certificates nodejs \
&& npm install -g yo generator-hubot \
&& adduser -s /bin/sh -D hubot
USER hubot
WORKDIR /home/hubot
RUN set -xe \
&& yo hubot --name $HUBOT_NAME \
--description $HUBOT_DESCRIPTION \
--adapter $HUBOT_ADAPTER \
--defaults \
&& npm install --save hubot-$HUBOT_ADAPTER \
htmlparser \
moment \
querystring \
soupselect \
underscore \
underscore.string \
url \
&& sed -i -r 's/^\s+#//' scripts/example.coffee
VOLUME /home/hobot
EXPOSE 8080
CMD ["./bin/hubot", "--adapter", "slack"]