openvidu-e2e-test Dockerfile

pull/20/head
pabloFuente 2017-10-18 17:41:46 +02:00
parent da0974701d
commit d3a5a8d1be
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
FROM elastest/ci-docker-e2e
MAINTAINER openvidu@gmail.com
USER root
RUN apt-get update && apt-get -y install sudo
# Install Kurento Media Server (KMS)
RUN echo "deb http://ubuntu.kurento.org xenial kms6" | tee /etc/apt/sources.list.d/kurento.list \
&& apt-key adv --keyserver keyserver.ubuntu.com --recv 2F819BC0 \
&& apt-get update \
&& apt-get -y dist-upgrade \
&& apt-get -y install kurento-media-server-6.0 \
&& rm -rf /var/lib/apt/lists/*
# Install Node
RUN sudo curl -sL https://deb.nodesource.com/setup_6.x | sudo bash - && sudo apt-get install -y nodejs
# Install angular-cli
RUN sudo npm install -g @angular/cli
# Install http-server
RUN sudo npm install -g http-server
CMD ["sleep","10"]