openvidu-deployment: install dnsutils in openvidu-server, openvidu-server-pro and coturn to use dig

pull/553/head
cruizba 2020-11-02 20:41:13 +01:00
parent b9de4f38be
commit 553e63513c
3 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,7 @@
FROM ubuntu:16.04 FROM ubuntu:16.04
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y coturn curl && apt-get install -y coturn curl dnsutils
COPY ./configuration-files.sh /tmp/ COPY ./configuration-files.sh /tmp/
COPY ./entrypoint.sh /usr/local/bin COPY ./entrypoint.sh /usr/local/bin

View File

@ -11,6 +11,7 @@ RUN apt-get update && apt-get install -y \
jq \ jq \
docker.io \ docker.io \
ethtool \ ethtool \
dnsutils \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN mkdir -p /opt/openvidu /usr/local/bin/ RUN mkdir -p /opt/openvidu /usr/local/bin/

View File

@ -8,6 +8,7 @@ RUN apt-get update && apt-get install -y \
openjdk-8-jre \ openjdk-8-jre \
coturn \ coturn \
redis-tools \ redis-tools \
dnsutils \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# Copy OpenVidu Server # Copy OpenVidu Server