mirror of https://github.com/OpenVidu/openvidu.git
12 lines
273 B
Docker
12 lines
273 B
Docker
![]() |
FROM ubuntu:16.04
|
||
|
|
||
|
RUN apt-get update \
|
||
|
&& apt-get install -y coturn curl
|
||
|
|
||
|
COPY ./configuration-files.sh /tmp/
|
||
|
COPY ./entrypoint.sh /usr/local/bin
|
||
|
|
||
|
RUN chmod +x /tmp/configuration-files.sh \
|
||
|
&& chmod +x /usr/local/bin/entrypoint.sh
|
||
|
|
||
|
CMD /usr/local/bin/entrypoint.sh
|