docker/matrix/coturn/Dockerfile
2024-01-13 16:50:51 +01:00

10 lines
341 B
Docker

FROM docker.io/coturn/coturn:4.6
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
gettext \
&& rm -rf /var/lib/apt/lists/*
COPY entrypoint.sh /usr/local/bin/
COPY turnserver.conf /etc/coturn/
ENTRYPOINT ["entrypoint.sh"]
CMD ["turnserver"]