diff --git a/hubot/Dockerfile b/hubot/Dockerfile index 371e578..ca9fc36 100644 --- a/hubot/Dockerfile +++ b/hubot/Dockerfile @@ -11,7 +11,7 @@ ENV HUBOT_DESCRIPTION=$HUBOT_NAME-$HUBOT_ADAPTER ENV HUBOT_SLACK_TOKEN= RUN set -xe \ - && apk add --update ca-certificates nodejs nodejs-npm \ + && apk add --update ca-certificates nodejs nodejs-npm python3 \ && npm install -g yo generator-hubot \ && adduser -s /bin/sh -D hubot @@ -33,7 +33,10 @@ RUN set -xe \ url \ && sed -i -r 's/^\s+#//' scripts/example.coffee -VOLUME /home/hobot +VOLUME /home/hobot \ + /usr/local/bin \ + /usr/lib/python3.6/site-packages + EXPOSE 8080 CMD ["./bin/hubot", "--adapter", "slack"]