mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-15 19:44:31 +08:00
8712b3fa17
Bumps nats from 2.10.18-scratch to 2.10.19-scratch. --- updated-dependencies: - dependency-name: nats dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
107 lines
3 KiB
Docker
107 lines
3 KiB
Docker
# syntax=docker/dockerfile:latest
|
|
FROM nats:2.10.19-scratch AS nats
|
|
FROM eturnal/eturnal:1.12.0 AS eturnal
|
|
FROM strukturag/nextcloud-spreed-signaling:1.3.2 AS signaling
|
|
FROM alpine:3.20.2 AS janus
|
|
|
|
ARG JANUS_VERSION=v0.14.3
|
|
WORKDIR /src
|
|
RUN set -ex; \
|
|
apk add --no-cache \
|
|
ca-certificates \
|
|
git \
|
|
autoconf \
|
|
automake \
|
|
build-base \
|
|
pkgconfig \
|
|
libtool \
|
|
util-linux \
|
|
glib-dev \
|
|
zlib-dev \
|
|
openssl-dev \
|
|
jansson-dev \
|
|
libnice-dev \
|
|
libconfig-dev \
|
|
libsrtp-dev \
|
|
libusrsctp-dev \
|
|
gengetopt-dev \
|
|
libwebsockets-dev; \
|
|
git clone --recursive https://github.com/meetecho/janus-gateway --depth=1 --single-branch --branch "$JANUS_VERSION" /src; \
|
|
/src/autogen.sh; \
|
|
/src/configure --disable-rabbitmq --disable-mqtt --disable-boringssl; \
|
|
make; \
|
|
make install; \
|
|
make configs; \
|
|
rename -v ".jcfg.sample" ".jcfg" /usr/local/etc/janus/*.jcfg.sample
|
|
|
|
FROM alpine:3.20.2
|
|
ENV ETURNAL_ETC_DIR="/conf"
|
|
COPY --from=janus --chmod=777 --chown=1000:1000 /usr/local /usr/local
|
|
COPY --from=eturnal --chmod=777 --chown=1000:1000 /opt/eturnal /opt/eturnal
|
|
COPY --from=nats --chmod=777 --chown=1000:1000 /nats-server /usr/local/bin/nats-server
|
|
COPY --from=signaling --chmod=777 --chown=1000:1000 /usr/bin/nextcloud-spreed-signaling /usr/local/bin/nextcloud-spreed-signaling
|
|
|
|
COPY --chmod=775 start.sh /start.sh
|
|
COPY --chmod=775 healthcheck.sh /healthcheck.sh
|
|
COPY --chmod=664 supervisord.conf /supervisord.conf
|
|
|
|
RUN set -ex; \
|
|
apk upgrade --no-cache -a; \
|
|
apk add --no-cache \
|
|
ca-certificates \
|
|
tzdata \
|
|
bash \
|
|
openssl \
|
|
supervisor \
|
|
bind-tools \
|
|
netcat-openbsd \
|
|
\
|
|
glib \
|
|
zlib \
|
|
libssl3 \
|
|
libcrypto3 \
|
|
jansson \
|
|
libnice \
|
|
libconfig \
|
|
libsrtp \
|
|
libusrsctp \
|
|
libwebsockets \
|
|
\
|
|
shadow \
|
|
grep; \
|
|
useradd --system -u 1000 eturnal; \
|
|
apk del --no-cache \
|
|
shadow; \
|
|
\
|
|
# Give root a random password
|
|
echo "root:$(openssl rand -base64 12)" | chpasswd; \
|
|
\
|
|
touch \
|
|
/etc/nats.conf \
|
|
/etc/eturnal.yml; \
|
|
echo "listen: 127.0.0.1:4222" | tee /etc/nats.conf; \
|
|
mkdir -p \
|
|
/var/tmp \
|
|
/conf \
|
|
/var/lib/turn \
|
|
/var/log/supervisord \
|
|
/var/run/supervisord \
|
|
/usr/local/lib/janus/loggers; \
|
|
chown eturnal:eturnal -R \
|
|
/etc/nats.conf \
|
|
/var/log/supervisord \
|
|
/var/run/supervisord; \
|
|
chmod 777 -R \
|
|
/tmp \
|
|
/conf \
|
|
/var/run/supervisord \
|
|
/var/log/supervisord; \
|
|
ln -s /opt/eturnal/bin/stun /usr/local/bin/stun; \
|
|
ln -s /opt/eturnal/bin/eturnalctl /usr/local/bin/eturnalctl
|
|
|
|
USER eturnal
|
|
ENTRYPOINT ["/start.sh"]
|
|
CMD ["supervisord", "-c", "/supervisord.conf"]
|
|
|
|
HEALTHCHECK CMD /healthcheck.sh
|
|
LABEL com.centurylinklabs.watchtower.enable="false"
|