Updated openvidu pro image

pull/431/head
OscarSotoSanchez 2020-04-09 16:35:02 +02:00
parent 8af910f1fd
commit 384ee3e85e
2 changed files with 7 additions and 8 deletions

View File

@ -4,16 +4,15 @@ MAINTAINER openvidu@gmail.com
ARG OPENVIDU_VERSION ARG OPENVIDU_VERSION
# Install main components # Install main components
RUN apt-get update && apt-get install --yes \ RUN apt-get update && apt-get install -y \
--no-install-recommends \
openjdk-8-jre \ openjdk-8-jre \
jq \ jq \
coturn \ coturn \
wget \ wget \
curl \ curl \
apt-get autoremove -y && \ coturn \
apt-get clean && \ docker.io \
rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# OpenVidu # OpenVidu
RUN mkdir -p /opt/openvidu /usr/local/bin/ && \ RUN mkdir -p /opt/openvidu /usr/local/bin/ && \

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Wait for kibana # Wait for kibana
if [ -z "${WAIT_KIBANA_URL}"]; then if [ ! -z "${WAIT_KIBANA_URL}" ]; then
while true while true
do do
HTTP_STATUS=$(curl -s -o /dev/null -I -w "%{http_code}" ${WAIT_KIBANA_URL}) HTTP_STATUS=$(curl -s -o /dev/null -I -w "%{http_code}" ${WAIT_KIBANA_URL})