coreos-home-server/service/coturn/Containerfile
Alex Palaistras 952df3d324 Update service versions with Renovate
This adds basic configuration for Renovate, and sets up most services
for automated updates to package versions.
2023-12-20 23:00:19 +00:00

19 lines
540 B
Docker

FROM docker.io/debian:bookworm-slim
# renovate: datasource=repology depName=debian_12/dovecot versioning=loose
ARG VERSION=4.6.1
RUN apt-get update -y && apt-get upgrade -y && \
apt-get install -y --no-install-recommends coturn=${VERSION}* gettext ca-certificates
COPY container/config /etc/coturn
COPY container/run-coturn /run-coturn
COPY container/run-healthcheck /run-healthcheck
# STUN/TURN ports.
EXPOSE 3478 3478/udp 5349 5349/udp
# Alternative STUN/TURN ports.
EXPOSE 3479 3479/udp 5350 5350/udp
ENTRYPOINT ["/run-coturn"]