Vincent Batts
50dd495948
https://github.com/ekmartin/slack-irc Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
6 lines
196 B
Docker
6 lines
196 B
Docker
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"]
|