mirror of https://github.com/OpenVidu/openvidu.git
openvidu-server: Dockerfiles updated (same RUN command to install OS tools)
parent
3c5c2596ba
commit
0c10aabd6b
|
@ -10,11 +10,11 @@ RUN echo "deb http://ubuntu.openvidu.io/6.7.2 xenial kms6" | tee /etc/apt/source
|
||||||
&& apt-get -y install openh264-gst-plugins-bad-1.5 \
|
&& apt-get -y install openh264-gst-plugins-bad-1.5 \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Install Java
|
# Install Java, supervisor and netstat
|
||||||
RUN apt-get update && apt-get install -y openjdk-8-jdk && rm -rf /var/lib/apt/lists/*
|
RUN apt-get update && apt-get install -y \
|
||||||
|
openjdk-8-jre \
|
||||||
# Install supervisor
|
supervisor \
|
||||||
RUN apt-get update && apt-get install -y supervisor && rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Configure supervisor
|
# Configure supervisor
|
||||||
RUN mkdir -p /var/log/supervisor
|
RUN mkdir -p /var/log/supervisor
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
FROM ubuntu:16.04
|
FROM ubuntu:16.04
|
||||||
MAINTAINER openvidu@gmail.com
|
MAINTAINER openvidu@gmail.com
|
||||||
|
|
||||||
# Install Java
|
# Install Java, supervisor and netstat
|
||||||
RUN apt-get update && apt-get install -y openjdk-8-jdk && rm -rf /var/lib/apt/lists/*
|
RUN apt-get update && apt-get install -y \
|
||||||
|
openjdk-8-jre \
|
||||||
# Install supervisor
|
supervisor \
|
||||||
RUN apt-get update && apt-get install -y supervisor && rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Configure supervisor
|
# Configure supervisor
|
||||||
RUN mkdir -p /var/log/supervisor
|
RUN mkdir -p /var/log/supervisor
|
||||||
|
|
Loading…
Reference in New Issue