Merge pull request #1 from vbatts/slack-irc

slack-irc: an IRC / slack bridge
This commit is contained in:
Vincent Batts 2017-06-02 13:32:22 -04:00 committed by GitHub
commit be1e72ce2e
1 changed files with 6 additions and 0 deletions

6
slack-irc/Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM fedora:25
RUN dnf install -y npm && dnf update -y && dnf clean all
RUN npm install -g slack-irc
RUN echo "[]" > /config.json
CMD ["--config","/config.json"]
ENTRYPOINT ["/usr/bin/slack-irc"]