mirror of
https://github.com/luzifer-docker/openfire.git
synced 2024-11-09 18:00:13 +00:00
25 lines
652 B
Docker
25 lines
652 B
Docker
FROM alpine
|
|
|
|
LABEL maintainer Knut Ahlers <knut@ahlers.me>
|
|
|
|
ENV OPENFIRE_VERSION=4_5_3
|
|
|
|
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"]
|
|
|