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

make SCTP in images work older Linux kernels #477

Open
wants to merge 1 commit into
base: master
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
3 changes: 2 additions & 1 deletion 24/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ RUN set -xe \
&& curl -fSL -o otp-src.tar.gz "$OTP_DOWNLOAD_URL" \
&& echo "$OTP_DOWNLOAD_SHA256 otp-src.tar.gz" | sha256sum -c - \
&& apk add --no-cache --virtual .build-deps \
--repository=http://dl-cdn.alpinelinux.org/alpine/v3.12/main \
dpkg-dev dpkg \
gcc \
g++ \
libc-dev \
linux-headers \
linux-headers=5.4.5-r1 \
make \
autoconf \
ncurses-dev \
Expand Down
3 changes: 2 additions & 1 deletion 25/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ RUN set -xe \
&& curl -fSL -o otp-src.tar.gz "$OTP_DOWNLOAD_URL" \
&& echo "$OTP_DOWNLOAD_SHA256 otp-src.tar.gz" | sha256sum -c - \
&& apk add --no-cache --virtual .build-deps \
--repository=http://dl-cdn.alpinelinux.org/alpine/v3.12/main \
dpkg-dev dpkg \
gcc \
g++ \
libc-dev \
linux-headers \
linux-headers=5.4.5-r1 \
make \
autoconf \
ncurses-dev \
Expand Down
3 changes: 2 additions & 1 deletion 26/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ RUN set -xe \
&& curl -fSL -o otp-src.tar.gz "$OTP_DOWNLOAD_URL" \
&& echo "$OTP_DOWNLOAD_SHA256 otp-src.tar.gz" | sha256sum -c - \
&& apk add --no-cache --virtual .build-deps \
--repository=http://dl-cdn.alpinelinux.org/alpine/v3.12/main \
dpkg-dev dpkg \
gcc \
g++ \
libc-dev \
linux-headers \
linux-headers=5.4.5-r1 \
make \
autoconf \
ncurses-dev \
Expand Down
3 changes: 2 additions & 1 deletion 27/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ RUN set -xe \
&& curl -fSL -o otp-src.tar.gz "$OTP_DOWNLOAD_URL" \
&& echo "$OTP_DOWNLOAD_SHA256 otp-src.tar.gz" | sha256sum -c - \
&& apk add --no-cache --virtual .build-deps \
--repository=http://dl-cdn.alpinelinux.org/alpine/v3.12/main \
dpkg-dev dpkg \
gcc \
g++ \
libc-dev \
linux-headers \
linux-headers=5.4.5-r1 \
make \
autoconf \
ncurses-dev \
Expand Down
3 changes: 2 additions & 1 deletion master/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ RUN set -xe \
&& curl -fSL -o otp-src.tar.gz "$OTP_DOWNLOAD_URL" \
&& echo "$OTP_DOWNLOAD_SHA256 otp-src.tar.gz" | sha256sum -c - \
&& apk add --no-cache --virtual .build-deps \
--repository=http://dl-cdn.alpinelinux.org/alpine/v3.12/main \
dpkg-dev dpkg \
gcc \
g++ \
libc-dev \
linux-headers \
linux-headers=5.4.5-r1 \
make \
autoconf \
ncurses-dev \
Expand Down
Loading