openfire/Dockerfile
Travis Automated Update f7c6a8ac3d Openfire 4.5.1
2020-03-10 09:34:23 +00:00

25 lines
652 B
Docker

FROM alpine
LABEL maintainer Knut Ahlers <knut@ahlers.me>
ENV OPENFIRE_VERSION=4_5_1
RUN set -ex \
&& apk --no-cache add \
bash \
ca-certificates \
curl \
openjdk11 \
&& mkdir -p /opt \
&& curl -sSfL "https://www.igniterealtime.org/downloadServlet?filename=openfire/openfire_${OPENFIRE_VERSION}.tar.gz" | \
tar -xz -C /opt \
&& curl -sSfLo /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.1/dumb-init_1.2.1_amd64 \
&& chmod +x /usr/local/bin/dumb-init
ADD start.sh /usr/local/bin/start.sh
EXPOSE 9090 9091 5222 5223 5269
VOLUME ["/data"]
ENTRYPOINT ["/usr/local/bin/start.sh"]