diff --git a/docker-images/3.2/alpine38/Dockerfile b/docker-images/3.2/alpine38/Dockerfile index d0eac720f..e984bba31 100644 --- a/docker-images/3.2/alpine38/Dockerfile +++ b/docker-images/3.2/alpine38/Dockerfile @@ -6,7 +6,7 @@ FROM alpine:3.8 AS base -RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.0 libssl1.0 libgomp expat git +RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.0 libssl1.0 libgomp expat git libssh FROM base AS build @@ -86,6 +86,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -516,6 +517,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.2/centos7/Dockerfile b/docker-images/3.2/centos7/Dockerfile index 119ee3ba0..0961b25c6 100644 --- a/docker-images/3.2/centos7/Dockerfile +++ b/docker-images/3.2/centos7/Dockerfile @@ -7,7 +7,7 @@ # FROM centos:7 AS base -RUN yum -y install libgomp && \ +RUN yum -y install libgomp libssh && \ yum clean all; @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \ make \ perl \ python3 \ + libssh-devel \ openssl-devel \ tar \ yasm \ @@ -553,6 +554,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.2/nvidia1604/Dockerfile b/docker-images/3.2/nvidia1604/Dockerfile index a3ff15847..cce4fc60e 100644 --- a/docker-images/3.2/nvidia1604/Dockerfile +++ b/docker-images/3.2/nvidia1604/Dockerfile @@ -22,7 +22,7 @@ ENV NVIDIA_DRIVER_CAPABILITIES compute,utility,video WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -104,6 +104,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ @@ -542,6 +543,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.2/scratch38/Dockerfile b/docker-images/3.2/scratch38/Dockerfile index 57d04e374..5071f8cc3 100644 --- a/docker-images/3.2/scratch38/Dockerfile +++ b/docker-images/3.2/scratch38/Dockerfile @@ -82,6 +82,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.2/ubuntu1604/Dockerfile b/docker-images/3.2/ubuntu1604/Dockerfile index b110b5315..89257b161 100644 --- a/docker-images/3.2/ubuntu1604/Dockerfile +++ b/docker-images/3.2/ubuntu1604/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:16.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -90,6 +90,7 @@ RUN buildDeps="autoconf \ pkg-config \ python \ libssl-dev \ + libssh-dev \ yasm \ zlib1g-dev" && \ apt-get -yqq update && \ @@ -517,6 +518,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.2/vaapi1604/Dockerfile b/docker-images/3.2/vaapi1604/Dockerfile index 2ff33c482..e292ce6d9 100644 --- a/docker-images/3.2/vaapi1604/Dockerfile +++ b/docker-images/3.2/vaapi1604/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:16.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ libva-dev \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.3/alpine311/Dockerfile b/docker-images/3.3/alpine311/Dockerfile index 853c182e7..5e3ae5705 100644 --- a/docker-images/3.3/alpine311/Dockerfile +++ b/docker-images/3.3/alpine311/Dockerfile @@ -6,7 +6,7 @@ FROM alpine:3.11 AS base -RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.1 libssl1.1 libgomp expat git +RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.1 libssl1.1 libgomp expat git libssh FROM base AS build @@ -86,6 +86,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -516,6 +517,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.3/centos7/Dockerfile b/docker-images/3.3/centos7/Dockerfile index 62d2b4611..498bf844f 100644 --- a/docker-images/3.3/centos7/Dockerfile +++ b/docker-images/3.3/centos7/Dockerfile @@ -7,7 +7,7 @@ # FROM centos:7 AS base -RUN yum -y install libgomp && \ +RUN yum -y install libgomp libssh && \ yum clean all; @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \ make \ perl \ python3 \ + libssh-devel \ openssl-devel \ tar \ yasm \ @@ -553,6 +554,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.3/centos8/Dockerfile b/docker-images/3.3/centos8/Dockerfile index dfb4e61fe..51ffec41b 100644 --- a/docker-images/3.3/centos8/Dockerfile +++ b/docker-images/3.3/centos8/Dockerfile @@ -7,7 +7,7 @@ # FROM centos:8 AS base -RUN dnf -y install libgomp && \ +RUN dnf -y install libgomp libssh && \ dnf clean all; @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \ nasm \ perl \ python3 \ + libssh-devel \ openssl-devel \ tar \ yasm \ @@ -519,6 +520,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.3/nvidia1804/Dockerfile b/docker-images/3.3/nvidia1804/Dockerfile index 4c5858599..c26f8ff84 100644 --- a/docker-images/3.3/nvidia1804/Dockerfile +++ b/docker-images/3.3/nvidia1804/Dockerfile @@ -22,7 +22,7 @@ ENV NVIDIA_DRIVER_CAPABILITIES compute,utility,video WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -104,6 +104,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ @@ -542,6 +543,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.3/scratch311/Dockerfile b/docker-images/3.3/scratch311/Dockerfile index 33e716f49..939d4221a 100644 --- a/docker-images/3.3/scratch311/Dockerfile +++ b/docker-images/3.3/scratch311/Dockerfile @@ -82,6 +82,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.3/ubuntu1604/Dockerfile b/docker-images/3.3/ubuntu1604/Dockerfile index c432cd841..25bff5cca 100644 --- a/docker-images/3.3/ubuntu1604/Dockerfile +++ b/docker-images/3.3/ubuntu1604/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:16.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -90,6 +90,7 @@ RUN buildDeps="autoconf \ pkg-config \ python \ libssl-dev \ + libssh-dev \ yasm \ zlib1g-dev" && \ apt-get -yqq update && \ @@ -517,6 +518,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.3/ubuntu1804/Dockerfile b/docker-images/3.3/ubuntu1804/Dockerfile index 0ff53398f..17ec58000 100644 --- a/docker-images/3.3/ubuntu1804/Dockerfile +++ b/docker-images/3.3/ubuntu1804/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:18.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ @@ -517,6 +518,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.3/vaapi1804/Dockerfile b/docker-images/3.3/vaapi1804/Dockerfile index 892ec6201..ce7d95a7b 100644 --- a/docker-images/3.3/vaapi1804/Dockerfile +++ b/docker-images/3.3/vaapi1804/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:18.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ libva-dev \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.4/alpine311/Dockerfile b/docker-images/3.4/alpine311/Dockerfile index be5823a47..574548b10 100644 --- a/docker-images/3.4/alpine311/Dockerfile +++ b/docker-images/3.4/alpine311/Dockerfile @@ -6,7 +6,7 @@ FROM alpine:3.11 AS base -RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.1 libssl1.1 libgomp expat git +RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.1 libssl1.1 libgomp expat git libssh FROM base AS build @@ -86,6 +86,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -516,6 +517,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.4/centos7/Dockerfile b/docker-images/3.4/centos7/Dockerfile index 2268121b0..2e475188c 100644 --- a/docker-images/3.4/centos7/Dockerfile +++ b/docker-images/3.4/centos7/Dockerfile @@ -7,7 +7,7 @@ # FROM centos:7 AS base -RUN yum -y install libgomp && \ +RUN yum -y install libgomp libssh && \ yum clean all; @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \ make \ perl \ python3 \ + libssh-devel \ openssl-devel \ tar \ yasm \ @@ -553,6 +554,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.4/centos8/Dockerfile b/docker-images/3.4/centos8/Dockerfile index 94e14cb03..573b76783 100644 --- a/docker-images/3.4/centos8/Dockerfile +++ b/docker-images/3.4/centos8/Dockerfile @@ -7,7 +7,7 @@ # FROM centos:8 AS base -RUN dnf -y install libgomp && \ +RUN dnf -y install libgomp libssh && \ dnf clean all; @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \ nasm \ perl \ python3 \ + libssh-devel \ openssl-devel \ tar \ yasm \ @@ -519,6 +520,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.4/nvidia1804/Dockerfile b/docker-images/3.4/nvidia1804/Dockerfile index e3fe5b486..e8802b24f 100644 --- a/docker-images/3.4/nvidia1804/Dockerfile +++ b/docker-images/3.4/nvidia1804/Dockerfile @@ -22,7 +22,7 @@ ENV NVIDIA_DRIVER_CAPABILITIES compute,utility,video WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -104,6 +104,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ @@ -542,6 +543,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.4/scratch311/Dockerfile b/docker-images/3.4/scratch311/Dockerfile index 81ad7609d..c97dfd83b 100644 --- a/docker-images/3.4/scratch311/Dockerfile +++ b/docker-images/3.4/scratch311/Dockerfile @@ -82,6 +82,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.4/ubuntu1604/Dockerfile b/docker-images/3.4/ubuntu1604/Dockerfile index 6a9987e38..1426e8656 100644 --- a/docker-images/3.4/ubuntu1604/Dockerfile +++ b/docker-images/3.4/ubuntu1604/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:16.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -90,6 +90,7 @@ RUN buildDeps="autoconf \ pkg-config \ python \ libssl-dev \ + libssh-dev \ yasm \ zlib1g-dev" && \ apt-get -yqq update && \ @@ -517,6 +518,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.4/ubuntu1804/Dockerfile b/docker-images/3.4/ubuntu1804/Dockerfile index 519f15265..2214eabef 100644 --- a/docker-images/3.4/ubuntu1804/Dockerfile +++ b/docker-images/3.4/ubuntu1804/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:18.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ @@ -517,6 +518,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/3.4/vaapi1804/Dockerfile b/docker-images/3.4/vaapi1804/Dockerfile index 6b96b3083..777bc1f1b 100644 --- a/docker-images/3.4/vaapi1804/Dockerfile +++ b/docker-images/3.4/vaapi1804/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:18.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ libva-dev \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.0/alpine311/Dockerfile b/docker-images/4.0/alpine311/Dockerfile index a040b3f5b..3b15a3b01 100644 --- a/docker-images/4.0/alpine311/Dockerfile +++ b/docker-images/4.0/alpine311/Dockerfile @@ -6,7 +6,7 @@ FROM alpine:3.11 AS base -RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.1 libssl1.1 libgomp expat git +RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.1 libssl1.1 libgomp expat git libssh FROM base AS build @@ -86,6 +86,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -516,6 +517,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.0/centos7/Dockerfile b/docker-images/4.0/centos7/Dockerfile index e4da8961c..920dc6941 100644 --- a/docker-images/4.0/centos7/Dockerfile +++ b/docker-images/4.0/centos7/Dockerfile @@ -7,7 +7,7 @@ # FROM centos:7 AS base -RUN yum -y install libgomp && \ +RUN yum -y install libgomp libssh && \ yum clean all; @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \ make \ perl \ python3 \ + libssh-devel \ openssl-devel \ tar \ yasm \ @@ -553,6 +554,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.0/centos8/Dockerfile b/docker-images/4.0/centos8/Dockerfile index af026325d..7a8412122 100644 --- a/docker-images/4.0/centos8/Dockerfile +++ b/docker-images/4.0/centos8/Dockerfile @@ -7,7 +7,7 @@ # FROM centos:8 AS base -RUN dnf -y install libgomp && \ +RUN dnf -y install libgomp libssh && \ dnf clean all; @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \ nasm \ perl \ python3 \ + libssh-devel \ openssl-devel \ tar \ yasm \ @@ -519,6 +520,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.0/nvidia1804/Dockerfile b/docker-images/4.0/nvidia1804/Dockerfile index 36e9b7de4..f628dde14 100644 --- a/docker-images/4.0/nvidia1804/Dockerfile +++ b/docker-images/4.0/nvidia1804/Dockerfile @@ -22,7 +22,7 @@ ENV NVIDIA_DRIVER_CAPABILITIES compute,utility,video WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -104,6 +104,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ @@ -542,6 +543,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.0/scratch311/Dockerfile b/docker-images/4.0/scratch311/Dockerfile index 10700a914..5f6d248fb 100644 --- a/docker-images/4.0/scratch311/Dockerfile +++ b/docker-images/4.0/scratch311/Dockerfile @@ -82,6 +82,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.0/ubuntu1604/Dockerfile b/docker-images/4.0/ubuntu1604/Dockerfile index a0e09d83b..5099a7f9a 100644 --- a/docker-images/4.0/ubuntu1604/Dockerfile +++ b/docker-images/4.0/ubuntu1604/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:16.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -90,6 +90,7 @@ RUN buildDeps="autoconf \ pkg-config \ python \ libssl-dev \ + libssh-dev \ yasm \ zlib1g-dev" && \ apt-get -yqq update && \ @@ -517,6 +518,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.0/ubuntu1804/Dockerfile b/docker-images/4.0/ubuntu1804/Dockerfile index 7b4a4c6a7..cafb20c75 100644 --- a/docker-images/4.0/ubuntu1804/Dockerfile +++ b/docker-images/4.0/ubuntu1804/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:18.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ @@ -517,6 +518,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.0/vaapi1804/Dockerfile b/docker-images/4.0/vaapi1804/Dockerfile index 72a2e14c5..764804072 100644 --- a/docker-images/4.0/vaapi1804/Dockerfile +++ b/docker-images/4.0/vaapi1804/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:18.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ libva-dev \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.1/alpine311/Dockerfile b/docker-images/4.1/alpine311/Dockerfile index 04dba325a..dc2477b62 100644 --- a/docker-images/4.1/alpine311/Dockerfile +++ b/docker-images/4.1/alpine311/Dockerfile @@ -6,7 +6,7 @@ FROM alpine:3.11 AS base -RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.1 libssl1.1 libgomp expat git +RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.1 libssl1.1 libgomp expat git libssh FROM base AS build @@ -86,6 +86,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -516,6 +517,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.1/centos7/Dockerfile b/docker-images/4.1/centos7/Dockerfile index 0c65374b0..f06826c4e 100644 --- a/docker-images/4.1/centos7/Dockerfile +++ b/docker-images/4.1/centos7/Dockerfile @@ -7,7 +7,7 @@ # FROM centos:7 AS base -RUN yum -y install libgomp && \ +RUN yum -y install libgomp libssh && \ yum clean all; @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \ make \ perl \ python3 \ + libssh-devel \ openssl-devel \ tar \ yasm \ @@ -553,6 +554,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.1/centos8/Dockerfile b/docker-images/4.1/centos8/Dockerfile index c4c04304a..9096bd12f 100644 --- a/docker-images/4.1/centos8/Dockerfile +++ b/docker-images/4.1/centos8/Dockerfile @@ -7,7 +7,7 @@ # FROM centos:8 AS base -RUN dnf -y install libgomp && \ +RUN dnf -y install libgomp libssh && \ dnf clean all; @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \ nasm \ perl \ python3 \ + libssh-devel \ openssl-devel \ tar \ yasm \ @@ -519,6 +520,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.1/nvidia1804/Dockerfile b/docker-images/4.1/nvidia1804/Dockerfile index 5dd743ccb..e5740b965 100644 --- a/docker-images/4.1/nvidia1804/Dockerfile +++ b/docker-images/4.1/nvidia1804/Dockerfile @@ -22,7 +22,7 @@ ENV NVIDIA_DRIVER_CAPABILITIES compute,utility,video WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -104,6 +104,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ @@ -542,6 +543,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.1/scratch311/Dockerfile b/docker-images/4.1/scratch311/Dockerfile index 419f8d012..00c643526 100644 --- a/docker-images/4.1/scratch311/Dockerfile +++ b/docker-images/4.1/scratch311/Dockerfile @@ -82,6 +82,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.1/ubuntu1604/Dockerfile b/docker-images/4.1/ubuntu1604/Dockerfile index a69502ee3..e0730a6f4 100644 --- a/docker-images/4.1/ubuntu1604/Dockerfile +++ b/docker-images/4.1/ubuntu1604/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:16.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -90,6 +90,7 @@ RUN buildDeps="autoconf \ pkg-config \ python \ libssl-dev \ + libssh-dev \ yasm \ zlib1g-dev" && \ apt-get -yqq update && \ @@ -517,6 +518,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.1/ubuntu1804/Dockerfile b/docker-images/4.1/ubuntu1804/Dockerfile index 61890b93a..62629a035 100644 --- a/docker-images/4.1/ubuntu1804/Dockerfile +++ b/docker-images/4.1/ubuntu1804/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:18.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ @@ -517,6 +518,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.1/vaapi1804/Dockerfile b/docker-images/4.1/vaapi1804/Dockerfile index 638bab9fc..a609151da 100644 --- a/docker-images/4.1/vaapi1804/Dockerfile +++ b/docker-images/4.1/vaapi1804/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:18.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ libva-dev \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.2/alpine311/Dockerfile b/docker-images/4.2/alpine311/Dockerfile index b859576d8..7795fcae7 100644 --- a/docker-images/4.2/alpine311/Dockerfile +++ b/docker-images/4.2/alpine311/Dockerfile @@ -6,7 +6,7 @@ FROM alpine:3.11 AS base -RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.1 libssl1.1 libgomp expat git +RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.1 libssl1.1 libgomp expat git libssh FROM base AS build @@ -86,6 +86,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -516,6 +517,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.2/centos7/Dockerfile b/docker-images/4.2/centos7/Dockerfile index 19df4c5d9..d29c09f04 100644 --- a/docker-images/4.2/centos7/Dockerfile +++ b/docker-images/4.2/centos7/Dockerfile @@ -7,7 +7,7 @@ # FROM centos:7 AS base -RUN yum -y install libgomp && \ +RUN yum -y install libgomp libssh && \ yum clean all; @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \ make \ perl \ python3 \ + libssh-devel \ openssl-devel \ tar \ yasm \ @@ -553,6 +554,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.2/centos8/Dockerfile b/docker-images/4.2/centos8/Dockerfile index 26e5fdf79..91d59ffa3 100644 --- a/docker-images/4.2/centos8/Dockerfile +++ b/docker-images/4.2/centos8/Dockerfile @@ -7,7 +7,7 @@ # FROM centos:8 AS base -RUN dnf -y install libgomp && \ +RUN dnf -y install libgomp libssh && \ dnf clean all; @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \ nasm \ perl \ python3 \ + libssh-devel \ openssl-devel \ tar \ yasm \ @@ -519,6 +520,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.2/nvidia1804/Dockerfile b/docker-images/4.2/nvidia1804/Dockerfile index 23fab6c59..e18e24459 100644 --- a/docker-images/4.2/nvidia1804/Dockerfile +++ b/docker-images/4.2/nvidia1804/Dockerfile @@ -22,7 +22,7 @@ ENV NVIDIA_DRIVER_CAPABILITIES compute,utility,video WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -104,6 +104,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ @@ -542,6 +543,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.2/scratch311/Dockerfile b/docker-images/4.2/scratch311/Dockerfile index 6f60b4699..3f1c5b633 100644 --- a/docker-images/4.2/scratch311/Dockerfile +++ b/docker-images/4.2/scratch311/Dockerfile @@ -82,6 +82,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.2/ubuntu1604/Dockerfile b/docker-images/4.2/ubuntu1604/Dockerfile index 616defed7..2fd933946 100644 --- a/docker-images/4.2/ubuntu1604/Dockerfile +++ b/docker-images/4.2/ubuntu1604/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:16.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -90,6 +90,7 @@ RUN buildDeps="autoconf \ pkg-config \ python \ libssl-dev \ + libssh-dev \ yasm \ zlib1g-dev" && \ apt-get -yqq update && \ @@ -517,6 +518,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.2/ubuntu1804/Dockerfile b/docker-images/4.2/ubuntu1804/Dockerfile index a4db49398..ae5e848af 100644 --- a/docker-images/4.2/ubuntu1804/Dockerfile +++ b/docker-images/4.2/ubuntu1804/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:18.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ @@ -517,6 +518,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.2/vaapi1804/Dockerfile b/docker-images/4.2/vaapi1804/Dockerfile index cdd012da4..01b5f4279 100644 --- a/docker-images/4.2/vaapi1804/Dockerfile +++ b/docker-images/4.2/vaapi1804/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:18.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ libva-dev \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.3/alpine311/Dockerfile b/docker-images/4.3/alpine311/Dockerfile index d5f9579b7..0d6c721b1 100644 --- a/docker-images/4.3/alpine311/Dockerfile +++ b/docker-images/4.3/alpine311/Dockerfile @@ -6,7 +6,7 @@ FROM alpine:3.11 AS base -RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.1 libssl1.1 libgomp expat git +RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.1 libssl1.1 libgomp expat git libssh FROM base AS build @@ -86,6 +86,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -516,6 +517,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.3/alpine38/Dockerfile b/docker-images/4.3/alpine38/Dockerfile index 6e290c710..10434e0f9 100644 --- a/docker-images/4.3/alpine38/Dockerfile +++ b/docker-images/4.3/alpine38/Dockerfile @@ -6,7 +6,7 @@ FROM alpine:3.8 AS base -RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.0 libssl1.0 libgomp expat git +RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.0 libssl1.0 libgomp expat git libssh FROM base AS build @@ -86,6 +86,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -516,6 +517,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.3/centos7/Dockerfile b/docker-images/4.3/centos7/Dockerfile index 6d90d7621..d9e32ce46 100644 --- a/docker-images/4.3/centos7/Dockerfile +++ b/docker-images/4.3/centos7/Dockerfile @@ -7,7 +7,7 @@ # FROM centos:7 AS base -RUN yum -y install libgomp && \ +RUN yum -y install libgomp libssh && \ yum clean all; @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \ make \ perl \ python3 \ + libssh-devel \ openssl-devel \ tar \ yasm \ @@ -553,6 +554,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.3/centos8/Dockerfile b/docker-images/4.3/centos8/Dockerfile index 774ce0d0a..7650db4fb 100644 --- a/docker-images/4.3/centos8/Dockerfile +++ b/docker-images/4.3/centos8/Dockerfile @@ -7,7 +7,7 @@ # FROM centos:8 AS base -RUN dnf -y install libgomp && \ +RUN dnf -y install libgomp libssh && \ dnf clean all; @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \ nasm \ perl \ python3 \ + libssh-devel \ openssl-devel \ tar \ yasm \ @@ -519,6 +520,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.3/nvidia1604/Dockerfile b/docker-images/4.3/nvidia1604/Dockerfile index 6f0113130..d7f417ee9 100644 --- a/docker-images/4.3/nvidia1604/Dockerfile +++ b/docker-images/4.3/nvidia1604/Dockerfile @@ -22,7 +22,7 @@ ENV NVIDIA_DRIVER_CAPABILITIES compute,utility,video WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -104,6 +104,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ @@ -542,6 +543,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.3/nvidia1804/Dockerfile b/docker-images/4.3/nvidia1804/Dockerfile index af5b61b1f..466f95e82 100644 --- a/docker-images/4.3/nvidia1804/Dockerfile +++ b/docker-images/4.3/nvidia1804/Dockerfile @@ -22,7 +22,7 @@ ENV NVIDIA_DRIVER_CAPABILITIES compute,utility,video WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -104,6 +104,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ @@ -542,6 +543,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.3/scratch311/Dockerfile b/docker-images/4.3/scratch311/Dockerfile index e807e1b00..dcfe76740 100644 --- a/docker-images/4.3/scratch311/Dockerfile +++ b/docker-images/4.3/scratch311/Dockerfile @@ -82,6 +82,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.3/scratch38/Dockerfile b/docker-images/4.3/scratch38/Dockerfile index 41718697a..dcd769d26 100644 --- a/docker-images/4.3/scratch38/Dockerfile +++ b/docker-images/4.3/scratch38/Dockerfile @@ -82,6 +82,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.3/ubuntu1604/Dockerfile b/docker-images/4.3/ubuntu1604/Dockerfile index 3230a04e1..99de4e968 100644 --- a/docker-images/4.3/ubuntu1604/Dockerfile +++ b/docker-images/4.3/ubuntu1604/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:16.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -90,6 +90,7 @@ RUN buildDeps="autoconf \ pkg-config \ python \ libssl-dev \ + libssh-dev \ yasm \ zlib1g-dev" && \ apt-get -yqq update && \ @@ -517,6 +518,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.3/ubuntu1804/Dockerfile b/docker-images/4.3/ubuntu1804/Dockerfile index 1e3cf90ec..2d40a5f14 100644 --- a/docker-images/4.3/ubuntu1804/Dockerfile +++ b/docker-images/4.3/ubuntu1804/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:18.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ @@ -517,6 +518,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.3/vaapi1604/Dockerfile b/docker-images/4.3/vaapi1604/Dockerfile index e8800aea3..30d02d296 100644 --- a/docker-images/4.3/vaapi1604/Dockerfile +++ b/docker-images/4.3/vaapi1604/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:16.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ libva-dev \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/4.3/vaapi1804/Dockerfile b/docker-images/4.3/vaapi1804/Dockerfile index b08ee24f4..a8fe25ae5 100644 --- a/docker-images/4.3/vaapi1804/Dockerfile +++ b/docker-images/4.3/vaapi1804/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:18.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ libva-dev \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/snapshot/alpine311/Dockerfile b/docker-images/snapshot/alpine311/Dockerfile index ebed93913..e8063ec7a 100644 --- a/docker-images/snapshot/alpine311/Dockerfile +++ b/docker-images/snapshot/alpine311/Dockerfile @@ -6,7 +6,7 @@ FROM alpine:3.11 AS base -RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.1 libssl1.1 libgomp expat git +RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.1 libssl1.1 libgomp expat git libssh FROM base AS build @@ -86,6 +86,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -516,6 +517,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/snapshot/centos7/Dockerfile b/docker-images/snapshot/centos7/Dockerfile index 7b7ff2086..001d54d49 100644 --- a/docker-images/snapshot/centos7/Dockerfile +++ b/docker-images/snapshot/centos7/Dockerfile @@ -7,7 +7,7 @@ # FROM centos:7 AS base -RUN yum -y install libgomp && \ +RUN yum -y install libgomp libssh && \ yum clean all; @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \ make \ perl \ python3 \ + libssh-devel \ openssl-devel \ tar \ yasm \ @@ -553,6 +554,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/snapshot/centos8/Dockerfile b/docker-images/snapshot/centos8/Dockerfile index 3d0f14319..9fbd3a952 100644 --- a/docker-images/snapshot/centos8/Dockerfile +++ b/docker-images/snapshot/centos8/Dockerfile @@ -7,7 +7,7 @@ # FROM centos:8 AS base -RUN dnf -y install libgomp && \ +RUN dnf -y install libgomp libssh && \ dnf clean all; @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \ nasm \ perl \ python3 \ + libssh-devel \ openssl-devel \ tar \ yasm \ @@ -519,6 +520,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/snapshot/nvidia1804/Dockerfile b/docker-images/snapshot/nvidia1804/Dockerfile index f6e3c5ec6..44e68e28b 100644 --- a/docker-images/snapshot/nvidia1804/Dockerfile +++ b/docker-images/snapshot/nvidia1804/Dockerfile @@ -22,7 +22,7 @@ ENV NVIDIA_DRIVER_CAPABILITIES compute,utility,video WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -104,6 +104,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ @@ -542,6 +543,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/snapshot/scratch311/Dockerfile b/docker-images/snapshot/scratch311/Dockerfile index af08c16e2..823208165 100644 --- a/docker-images/snapshot/scratch311/Dockerfile +++ b/docker-images/snapshot/scratch311/Dockerfile @@ -82,6 +82,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/snapshot/ubuntu1604/Dockerfile b/docker-images/snapshot/ubuntu1604/Dockerfile index ef1088226..ff8241d0d 100644 --- a/docker-images/snapshot/ubuntu1604/Dockerfile +++ b/docker-images/snapshot/ubuntu1604/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:16.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -90,6 +90,7 @@ RUN buildDeps="autoconf \ pkg-config \ python \ libssl-dev \ + libssh-dev \ yasm \ zlib1g-dev" && \ apt-get -yqq update && \ @@ -517,6 +518,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/snapshot/ubuntu1804/Dockerfile b/docker-images/snapshot/ubuntu1804/Dockerfile index f7d62a119..fa779cc94 100644 --- a/docker-images/snapshot/ubuntu1804/Dockerfile +++ b/docker-images/snapshot/ubuntu1804/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:18.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ @@ -517,6 +518,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/docker-images/snapshot/vaapi1804/Dockerfile b/docker-images/snapshot/vaapi1804/Dockerfile index 7930dcfa7..6e758c3ef 100644 --- a/docker-images/snapshot/vaapi1804/Dockerfile +++ b/docker-images/snapshot/vaapi1804/Dockerfile @@ -10,7 +10,7 @@ FROM ubuntu:18.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ libva-dev \ @@ -518,6 +519,7 @@ RUN \ --enable-libxvid \ --enable-libx264 \ --enable-nonfree \ + --enable-libssh \ --enable-openssl \ --enable-libfdk_aac \ --enable-postproc \ diff --git a/templates/Dockerfile-template.alpine311 b/templates/Dockerfile-template.alpine311 index 36a4cda23..f3b5c190d 100644 --- a/templates/Dockerfile-template.alpine311 +++ b/templates/Dockerfile-template.alpine311 @@ -6,7 +6,7 @@ FROM alpine:3.11 AS base -RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.1 libssl1.1 libgomp expat git +RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.1 libssl1.1 libgomp expat git libssh FROM base AS build @@ -31,6 +31,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ diff --git a/templates/Dockerfile-template.alpine38 b/templates/Dockerfile-template.alpine38 index fccf7bf6b..e2b992824 100644 --- a/templates/Dockerfile-template.alpine38 +++ b/templates/Dockerfile-template.alpine38 @@ -6,7 +6,7 @@ FROM alpine:3.8 AS base -RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.0 libssl1.0 libgomp expat git +RUN apk add --no-cache --update libgcc libstdc++ ca-certificates libcrypto1.0 libssl1.0 libgomp expat git libssh FROM base AS build @@ -31,6 +31,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ diff --git a/templates/Dockerfile-template.centos7 b/templates/Dockerfile-template.centos7 index f02b1a523..fb312b1f5 100644 --- a/templates/Dockerfile-template.centos7 +++ b/templates/Dockerfile-template.centos7 @@ -7,7 +7,7 @@ # FROM centos:7 AS base -RUN yum -y install libgomp && \ +RUN yum -y install libgomp libssh && \ yum clean all; @@ -32,6 +32,7 @@ RUN buildDeps="autoconf \ make \ perl \ python3 \ + libssh-devel \ openssl-devel \ tar \ yasm \ diff --git a/templates/Dockerfile-template.centos8 b/templates/Dockerfile-template.centos8 index baad09b28..1c1176449 100644 --- a/templates/Dockerfile-template.centos8 +++ b/templates/Dockerfile-template.centos8 @@ -7,7 +7,7 @@ # FROM centos:8 AS base -RUN dnf -y install libgomp && \ +RUN dnf -y install libgomp libssh && \ dnf clean all; @@ -32,6 +32,7 @@ RUN buildDeps="autoconf \ nasm \ perl \ python3 \ + libssh-devel \ openssl-devel \ tar \ yasm \ diff --git a/templates/Dockerfile-template.nvidia b/templates/Dockerfile-template.nvidia index 4c31b10f3..23c55a2a4 100644 --- a/templates/Dockerfile-template.nvidia +++ b/templates/Dockerfile-template.nvidia @@ -22,7 +22,7 @@ ENV NVIDIA_DRIVER_CAPABILITIES compat32,compute,video WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev libssh && \ apt-get autoremove -y && \ apt-get clean -y @@ -53,6 +53,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh \ libssl-dev \ yasm \ zlib1g-dev" && \ diff --git a/templates/Dockerfile-template.nvidia1604 b/templates/Dockerfile-template.nvidia1604 index 15b8355e8..ecef3dd30 100644 --- a/templates/Dockerfile-template.nvidia1604 +++ b/templates/Dockerfile-template.nvidia1604 @@ -22,7 +22,7 @@ ENV NVIDIA_DRIVER_CAPABILITIES compute,utility,video WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -49,6 +49,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ diff --git a/templates/Dockerfile-template.nvidia1804 b/templates/Dockerfile-template.nvidia1804 index 1b795127c..232ca27f5 100644 --- a/templates/Dockerfile-template.nvidia1804 +++ b/templates/Dockerfile-template.nvidia1804 @@ -22,7 +22,7 @@ ENV NVIDIA_DRIVER_CAPABILITIES compute,utility,video WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libxcb-shape0-dev libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -49,6 +49,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ diff --git a/templates/Dockerfile-template.scratch311 b/templates/Dockerfile-template.scratch311 index aeb64078c..132822a45 100644 --- a/templates/Dockerfile-template.scratch311 +++ b/templates/Dockerfile-template.scratch311 @@ -27,6 +27,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ diff --git a/templates/Dockerfile-template.scratch38 b/templates/Dockerfile-template.scratch38 index 9befa2d81..a6d0fcf23 100644 --- a/templates/Dockerfile-template.scratch38 +++ b/templates/Dockerfile-template.scratch38 @@ -27,6 +27,7 @@ RUN buildDeps="autoconf \ libtool \ make \ python \ + libssh-dev \ openssl-dev \ tar \ yasm \ diff --git a/templates/Dockerfile-template.ubuntu1604 b/templates/Dockerfile-template.ubuntu1604 index 2dc92deac..3df3509b2 100644 --- a/templates/Dockerfile-template.ubuntu1604 +++ b/templates/Dockerfile-template.ubuntu1604 @@ -10,7 +10,7 @@ FROM ubuntu:16.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -35,6 +35,7 @@ RUN buildDeps="autoconf \ pkg-config \ python \ libssl-dev \ + libssh-dev \ yasm \ zlib1g-dev" && \ apt-get -yqq update && \ diff --git a/templates/Dockerfile-template.ubuntu1804 b/templates/Dockerfile-template.ubuntu1804 index a6eea5fd1..88f4a4526 100644 --- a/templates/Dockerfile-template.ubuntu1804 +++ b/templates/Dockerfile-template.ubuntu1804 @@ -10,7 +10,7 @@ FROM ubuntu:18.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -34,6 +34,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ zlib1g-dev" && \ diff --git a/templates/Dockerfile-template.vaapi1604 b/templates/Dockerfile-template.vaapi1604 index a5c263e62..56448dddd 100644 --- a/templates/Dockerfile-template.vaapi1604 +++ b/templates/Dockerfile-template.vaapi1604 @@ -10,7 +10,7 @@ FROM ubuntu:16.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -34,6 +34,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ libva-dev \ diff --git a/templates/Dockerfile-template.vaapi1804 b/templates/Dockerfile-template.vaapi1804 index 7878dd8a9..c2f287b8b 100644 --- a/templates/Dockerfile-template.vaapi1804 +++ b/templates/Dockerfile-template.vaapi1804 @@ -10,7 +10,7 @@ FROM ubuntu:18.04 AS base WORKDIR /tmp/workdir RUN apt-get -yqq update && \ - apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 && \ + apt-get install -yq --no-install-recommends ca-certificates expat libgomp1 libssh-4 && \ apt-get autoremove -y && \ apt-get clean -y @@ -34,6 +34,7 @@ RUN buildDeps="autoconf \ perl \ pkg-config \ python \ + libssh-dev \ libssl-dev \ yasm \ libva-dev \ diff --git a/update.py b/update.py index e1cab15e8..efe472b1a 100755 --- a/update.py +++ b/update.py @@ -179,6 +179,7 @@ def get_major_version(version): "--enable-libxvid", "--enable-libx264", "--enable-nonfree", + "--enable-libssh", "--enable-openssl", "--enable-libfdk_aac", "--enable-postproc",