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"]