Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit d515672

Browse files
Updated docker file (#939)
+ added missing patch (based on https://github.com/open-webrtc-toolkit/owt-server/blob/master/scripts/patches/libnice014-closelock.patch) + added missing dependency + removed unnecessary ARG values
1 parent c7b9988 commit d515672

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docker/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ RUN wget -O - ${NICE_REPO} | tar xz && \
2727
patch -p1 < owt-server-${LIBNICE_PATCH_VER}/scripts/patches/libnice014-removecandidate.patch && \
2828
patch -p1 < owt-server-${LIBNICE_PATCH_VER}/scripts/patches/libnice014-keepalive.patch && \
2929
patch -p1 < owt-server-${LIBNICE_PATCH_VER}/scripts/patches/libnice014-startcheck.patch && \
30+
patch -p1 < owt-server-${LIBNICE_PATCH_VER}/scripts/patches/libnice014-closelock.patch && \
3031
./configure --prefix="/usr/local" --libdir=/usr/local/lib/x86_64-linux-gnu && \
3132
make -s V=0 && \
3233
make install
3334

3435

3536
# Build open ssl
36-
ARG OPENSSL_BASE="1.1.1"
3737
ARG OPENSSL_VER="1.1.1h"
3838
ARG OPENSSL_REPO=https://www.openssl.org/source/openssl-${OPENSSL_VER}.tar.gz
3939

@@ -92,7 +92,6 @@ ARG FFMPEG_VER="4.1.3"
9292
ARG FFMPEG_DIR="ffmpeg-${FFMPEG_VER}"
9393
ARG FFMPEG_SRC="${FFMPEG_DIR}.tar.bz2"
9494
ARG FFMPEG_SRC_URL="http://ffmpeg.org/releases/${FFMPEG_SRC}"
95-
ARG FFMPEG_SRC_MD5SUM="9985185a8de3678e5b55b1c63276f8b5"
9695

9796
RUN wget ${FFMPEG_SRC_URL} && tar xf ${FFMPEG_SRC} && mv ${FFMPEG_DIR} FFmpeg && \
9897
cd FFmpeg ;
@@ -154,7 +153,7 @@ ARG OWT_BRANCH=master
154153
ARG IMG_APP_PATH=/app_data/
155154
ENV APP_PATH=${IMG_APP_PATH}
156155

157-
RUN apt-get update && apt-get install -y -q --no-install-recommends python libglib2.0-dev rabbitmq-server mongodb libboost-thread-dev libboost-system-dev liblog4cxx-dev
156+
RUN apt-get update && apt-get install -y -q --no-install-recommends python libglib2.0-dev rabbitmq-server mongodb libboost-thread-dev libboost-system-dev liblog4cxx-dev libgstreamer-plugins-base1.0-dev
158157

159158
# 1. Clone OWT server source code
160159
# 2. Clone licode source code and patch

0 commit comments

Comments
 (0)