2018-01-27 21:48:58 +01:00
|
|
|
FROM debian:9-slim
|
2018-01-27 13:33:52 +01:00
|
|
|
|
2018-01-27 21:42:32 +01:00
|
|
|
LABEL maintainer="hanjo@bunix.de"
|
2018-01-27 13:33:52 +01:00
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
sendxmpp \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
ADD sendxmpp.sh /bin/sendxmpp.sh
|
|
|
|
|
|
|
|
RUN chmod +x /bin/sendxmpp.sh
|
|
|
|
|
|
|
|
ENTRYPOINT /bin/sendxmpp.sh
|