From 2f0407060e571a8a8712b2fa58379d4ab989e699 Mon Sep 17 00:00:00 2001 From: Brendan Jocson Date: Sun, 3 Sep 2017 23:44:33 +0300 Subject: [PATCH] fixed websockets in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f98c4ff..1dc36ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -113,7 +113,7 @@ RUN \ # build libwebsockets && if [ $JANUS_WITH_WEBSOCKETS = "1" ]; then git clone https://github.com/warmcat/libwebsockets.git ${BUILD_SRC}/libwebsockets \ && cd ${BUILD_SRC}/libwebsockets \ - && git checkout v1.5-chrome47-firefox41 \ +# && git checkout v1.5-chrome47-firefox41 \ && mkdir ${BUILD_SRC}/libwebsockets/build \ && cd ${BUILD_SRC}/libwebsockets/build \ && cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DCMAKE_C_FLAGS="-fpic" .. \