1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/hubot/Dockerfile
2019-08-03 18:08:02 +08:00

43 lines
1.0 KiB
Docker

#
# Dockerfile for hubot
#
FROM alpine
MAINTAINER kev <noreply@easypi.pro>
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 nodejs-npm python3 \
&& 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 \
/usr/local/bin \
/usr/lib/python3.7/site-packages
EXPOSE 8080
CMD ["./bin/hubot", "--adapter", "slack"]