mirror of https://github.com/OpenVidu/openvidu.git
17 lines
319 B
Docker
17 lines
319 B
Docker
FROM ubuntu:16.04
|
|
MAINTAINER openvidu@gmail.com
|
|
|
|
# Install Java, supervisor and netstat
|
|
RUN apt-get update && apt-get install -y \
|
|
openjdk-8-jre \
|
|
coturn \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Copy OpenVidu Server
|
|
COPY openvidu-server.jar /
|
|
|
|
EXPOSE 4443
|
|
|
|
# Exec supervisord
|
|
CMD ["java", "-jar", "openvidu-server.jar"]
|