docker-coturn/Dockerfile

7 lines
238 B
Docker
Raw Permalink Normal View History

2019-12-14 21:26:14 +00:00
FROM debian:buster
MAINTAINER yohan <783b8c87@scimetis.net>
ENV DEBIAN_FRONTEND noninteractive
ENV TZ Europe/Paris
RUN apt-get update && apt-get -y install coturn
2019-12-14 21:49:15 +00:00
ENTRYPOINT ["/usr/bin/turnserver", "--log-file", "stdout", "-n", "--prod"]