openvidu-test-e2e Docker images updated: node 8, KMS 6.7.2

pull/73/head
pabloFuente 2018-06-04 16:21:21 +02:00
parent 615b4fb2e4
commit afb71abcac
1 changed files with 4 additions and 18 deletions

View File

@ -1,6 +1,6 @@
FROM ubuntu:16.04 FROM ubuntu:16.04
MAINTAINER openvidu@gmail.com LABEL maintainer="openvidu@gmail.com"
USER root USER root
@ -9,7 +9,7 @@ RUN apt-get update && apt-get -y upgrade
RUN apt-get install -y software-properties-common && apt-get install -y --no-install-recommends apt-utils RUN apt-get install -y software-properties-common && apt-get install -y --no-install-recommends apt-utils
# Install Kurento Media Server (KMS) # Install Kurento Media Server (KMS)
RUN echo "deb http://ubuntu.openvidu.io/6.7.0 xenial kms6" | tee /etc/apt/sources.list.d/kurento.list \ RUN echo "deb http://ubuntu.openvidu.io/6.7.2 xenial kms6" | tee /etc/apt/sources.list.d/kurento.list \
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 5AFA7A83 \ && apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 5AFA7A83 \
&& apt-get update \ && apt-get update \
&& apt-get -y dist-upgrade \ && apt-get -y dist-upgrade \
@ -18,7 +18,7 @@ RUN echo "deb http://ubuntu.openvidu.io/6.7.0 xenial kms6" | tee /etc/apt/source
# Install Node # Install Node
RUN apt-get update && apt-get install -y curl RUN apt-get update && apt-get install -y curl
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash - && apt-get install -y nodejs RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - && apt-get install -y nodejs
# Java # Java
RUN apt-get install -y default-jdk RUN apt-get install -y default-jdk
@ -35,15 +35,9 @@ RUN npm install -g @angular/cli
# http-server # http-server
RUN npm install -g http-server RUN npm install -g http-server
# npm # typescript
RUN npm install -g typescript RUN npm install -g typescript
# Docker
#RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
#RUN add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
#RUN apt-get update
#RUN apt-get -y install docker-ce
# sudo # sudo
RUN apt-get -y install sudo RUN apt-get -y install sudo
@ -54,12 +48,4 @@ RUN apt-get autoremove --purge -y
COPY entrypoint.sh /entrypoint.sh COPY entrypoint.sh /entrypoint.sh
RUN ["chmod", "+x", "/entrypoint.sh"] RUN ["chmod", "+x", "/entrypoint.sh"]
# Jenkins user
#RUN useradd -ms /bin/bash jenkins &&\
# echo "jenkins:jenkins" | chpasswd
#RUN usermod -aG docker jenkins
#ENV WORKSPACE /home/jenkins
#USER jenkins
#WORKDIR ${WORKSPACE}
ENTRYPOINT ["/entrypoint.sh"] ENTRYPOINT ["/entrypoint.sh"]