Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add sftp support #266

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docker-images/3.2/alpine38/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -86,6 +86,7 @@ RUN buildDeps="autoconf \
libtool \
make \
python \
libssh-dev \
openssl-dev \
tar \
yasm \
Expand Down Expand Up @@ -516,6 +517,7 @@ RUN \
--enable-libxvid \
--enable-libx264 \
--enable-nonfree \
--enable-libssh \
--enable-openssl \
--enable-libfdk_aac \
--enable-postproc \
Expand Down
4 changes: 3 additions & 1 deletion docker-images/3.2/centos7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
FROM centos:7 AS base

RUN yum -y install libgomp && \
RUN yum -y install libgomp libssh && \
yum clean all;


Expand Down Expand Up @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \
make \
perl \
python3 \
libssh-devel \
openssl-devel \
tar \
yasm \
Expand Down Expand Up @@ -553,6 +554,7 @@ RUN \
--enable-libxvid \
--enable-libx264 \
--enable-nonfree \
--enable-libssh \
--enable-openssl \
--enable-libfdk_aac \
--enable-postproc \
Expand Down
4 changes: 3 additions & 1 deletion docker-images/3.2/nvidia1604/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -104,6 +104,7 @@ RUN buildDeps="autoconf \
perl \
pkg-config \
python \
libssh-dev \
libssl-dev \
yasm \
zlib1g-dev" && \
Expand Down Expand Up @@ -542,6 +543,7 @@ RUN \
--enable-libxvid \
--enable-libx264 \
--enable-nonfree \
--enable-libssh \
--enable-openssl \
--enable-libfdk_aac \
--enable-postproc \
Expand Down
2 changes: 2 additions & 0 deletions docker-images/3.2/scratch38/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ RUN buildDeps="autoconf \
libtool \
make \
python \
libssh-dev \
openssl-dev \
tar \
yasm \
Expand Down Expand Up @@ -518,6 +519,7 @@ RUN \
--enable-libxvid \
--enable-libx264 \
--enable-nonfree \
--enable-libssh \
--enable-openssl \
--enable-libfdk_aac \
--enable-postproc \
Expand Down
4 changes: 3 additions & 1 deletion docker-images/3.2/ubuntu1604/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -90,6 +90,7 @@ RUN buildDeps="autoconf \
pkg-config \
python \
libssl-dev \
libssh-dev \
yasm \
zlib1g-dev" && \
apt-get -yqq update && \
Expand Down Expand Up @@ -517,6 +518,7 @@ RUN \
--enable-libxvid \
--enable-libx264 \
--enable-nonfree \
--enable-libssh \
--enable-openssl \
--enable-libfdk_aac \
--enable-postproc \
Expand Down
4 changes: 3 additions & 1 deletion docker-images/3.2/vaapi1604/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \
perl \
pkg-config \
python \
libssh-dev \
libssl-dev \
yasm \
libva-dev \
Expand Down Expand Up @@ -518,6 +519,7 @@ RUN \
--enable-libxvid \
--enable-libx264 \
--enable-nonfree \
--enable-libssh \
--enable-openssl \
--enable-libfdk_aac \
--enable-postproc \
Expand Down
4 changes: 3 additions & 1 deletion docker-images/3.3/alpine311/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -86,6 +86,7 @@ RUN buildDeps="autoconf \
libtool \
make \
python \
libssh-dev \
openssl-dev \
tar \
yasm \
Expand Down Expand Up @@ -516,6 +517,7 @@ RUN \
--enable-libxvid \
--enable-libx264 \
--enable-nonfree \
--enable-libssh \
--enable-openssl \
--enable-libfdk_aac \
--enable-postproc \
Expand Down
4 changes: 3 additions & 1 deletion docker-images/3.3/centos7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
FROM centos:7 AS base

RUN yum -y install libgomp && \
RUN yum -y install libgomp libssh && \
yum clean all;


Expand Down Expand Up @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \
make \
perl \
python3 \
libssh-devel \
openssl-devel \
tar \
yasm \
Expand Down Expand Up @@ -553,6 +554,7 @@ RUN \
--enable-libxvid \
--enable-libx264 \
--enable-nonfree \
--enable-libssh \
--enable-openssl \
--enable-libfdk_aac \
--enable-postproc \
Expand Down
4 changes: 3 additions & 1 deletion docker-images/3.3/centos8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
FROM centos:8 AS base

RUN dnf -y install libgomp && \
RUN dnf -y install libgomp libssh && \
dnf clean all;


Expand Down Expand Up @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \
nasm \
perl \
python3 \
libssh-devel \
openssl-devel \
tar \
yasm \
Expand Down Expand Up @@ -519,6 +520,7 @@ RUN \
--enable-libxvid \
--enable-libx264 \
--enable-nonfree \
--enable-libssh \
--enable-openssl \
--enable-libfdk_aac \
--enable-postproc \
Expand Down
4 changes: 3 additions & 1 deletion docker-images/3.3/nvidia1804/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -104,6 +104,7 @@ RUN buildDeps="autoconf \
perl \
pkg-config \
python \
libssh-dev \
libssl-dev \
yasm \
zlib1g-dev" && \
Expand Down Expand Up @@ -542,6 +543,7 @@ RUN \
--enable-libxvid \
--enable-libx264 \
--enable-nonfree \
--enable-libssh \
--enable-openssl \
--enable-libfdk_aac \
--enable-postproc \
Expand Down
2 changes: 2 additions & 0 deletions docker-images/3.3/scratch311/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ RUN buildDeps="autoconf \
libtool \
make \
python \
libssh-dev \
openssl-dev \
tar \
yasm \
Expand Down Expand Up @@ -518,6 +519,7 @@ RUN \
--enable-libxvid \
--enable-libx264 \
--enable-nonfree \
--enable-libssh \
--enable-openssl \
--enable-libfdk_aac \
--enable-postproc \
Expand Down
4 changes: 3 additions & 1 deletion docker-images/3.3/ubuntu1604/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -90,6 +90,7 @@ RUN buildDeps="autoconf \
pkg-config \
python \
libssl-dev \
libssh-dev \
yasm \
zlib1g-dev" && \
apt-get -yqq update && \
Expand Down Expand Up @@ -517,6 +518,7 @@ RUN \
--enable-libxvid \
--enable-libx264 \
--enable-nonfree \
--enable-libssh \
--enable-openssl \
--enable-libfdk_aac \
--enable-postproc \
Expand Down
4 changes: 3 additions & 1 deletion docker-images/3.3/ubuntu1804/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \
perl \
pkg-config \
python \
libssh-dev \
libssl-dev \
yasm \
zlib1g-dev" && \
Expand Down Expand Up @@ -517,6 +518,7 @@ RUN \
--enable-libxvid \
--enable-libx264 \
--enable-nonfree \
--enable-libssh \
--enable-openssl \
--enable-libfdk_aac \
--enable-postproc \
Expand Down
4 changes: 3 additions & 1 deletion docker-images/3.3/vaapi1804/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -89,6 +89,7 @@ RUN buildDeps="autoconf \
perl \
pkg-config \
python \
libssh-dev \
libssl-dev \
yasm \
libva-dev \
Expand Down Expand Up @@ -518,6 +519,7 @@ RUN \
--enable-libxvid \
--enable-libx264 \
--enable-nonfree \
--enable-libssh \
--enable-openssl \
--enable-libfdk_aac \
--enable-postproc \
Expand Down
4 changes: 3 additions & 1 deletion docker-images/3.4/alpine311/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -86,6 +86,7 @@ RUN buildDeps="autoconf \
libtool \
make \
python \
libssh-dev \
openssl-dev \
tar \
yasm \
Expand Down Expand Up @@ -516,6 +517,7 @@ RUN \
--enable-libxvid \
--enable-libx264 \
--enable-nonfree \
--enable-libssh \
--enable-openssl \
--enable-libfdk_aac \
--enable-postproc \
Expand Down
4 changes: 3 additions & 1 deletion docker-images/3.4/centos7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
FROM centos:7 AS base

RUN yum -y install libgomp && \
RUN yum -y install libgomp libssh && \
yum clean all;


Expand Down Expand Up @@ -87,6 +87,7 @@ RUN buildDeps="autoconf \
make \
perl \
python3 \
libssh-devel \
openssl-devel \
tar \
yasm \
Expand Down Expand Up @@ -553,6 +554,7 @@ RUN \
--enable-libxvid \
--enable-libx264 \
--enable-nonfree \
--enable-libssh \
--enable-openssl \
--enable-libfdk_aac \
--enable-postproc \
Expand Down
Loading