9 lines
150 B
Text
9 lines
150 B
Text
|
FROM amd64/debian:buster
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get dist-upgrade -y && \
|
||
|
apt-get install -y \
|
||
|
coturn
|
||
|
|
||
|
CMD ["/usr/bin/turnserver"]
|