Skip to content

Commit 4566275

Browse files
authored
fix(NA): openssl-1.1.1i dependency on Dockerfile for arm64 (#2516)
1 parent f6bd79d commit 4566275

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

prebuild/Linux/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ RUN apt-get update && apt-get -y install curl git cmake make gcc g++ nasm wget g
44
RUN bash -c 'cd; curl -LO https://pkg-config.freedesktop.org/releases/pkg-config-0.29.2.tar.gz; tar -xvf pkg-config-0.29.2.tar.gz; cd pkg-config-0.29.2; ./configure --with-internal-glib; make -j8; make install'
55
RUN bash -c 'cd; curl -O https://zlib.net/fossils/zlib-1.2.11.tar.gz; tar -xvf zlib-1.2.11.tar.gz; cd zlib-1.2.11; ./configure; make -j8; make install'
66
RUN bash -c 'cd; curl -LO https://github.com/libffi/libffi/releases/download/v3.3/libffi-3.3.tar.gz; tar -xvf libffi-3.3.tar.gz; cd libffi-3.3; ./configure; make -j8; make install'
7-
RUN bash -c 'cd; curl -O https://www.openssl.org/source/openssl-1.1.1i.tar.gz; tar -xvf openssl-1.1.1i.tar.gz; cd openssl-1.1.1i; ./config; make -j8; make install'
7+
RUN bash -c 'cd; curl -fLO https://www.openssl.org/source/old/1.1.1/openssl-1.1.1i.tar.gz && tar -xvzf openssl-1.1.1i.tar.gz && cd openssl-1.1.1i && ./config && make -j$(nproc) && make install'
88
RUN ldconfig
99
RUN bash -c 'cd; curl -O https://www.python.org/ftp/python/3.9.1/Python-3.9.1.tgz; tar -xvf Python-3.9.1.tgz; cd Python-3.9.1; ./configure --enable-shared --with-ensurepip=yes; make -j8; make install'
1010
RUN ldconfig
@@ -40,4 +40,4 @@ RUN bash -c 'curl -LO https://download.gnome.org/sources/gdk-pixbuf/2.42/gdk-pix
4040
RUN ldconfig
4141
RUN bash -c 'curl -LO https://download.gnome.org/sources/libcroco/0.6/libcroco-0.6.13.tar.xz; tar -xvf libcroco-0.6.13.tar.xz; cd libcroco-0.6.13; ./configure; make -j8; make install'
4242
RUN bash -c 'cd; . .cargo/env; curl -LO https://download.gnome.org/sources/librsvg/2.52/librsvg-2.52.8.tar.xz; tar -xvf librsvg-2.52.8.tar.xz; cd librsvg-2.52.8; ./configure --enable-introspection=no; make -j8; make install'
43-
RUN ldconfig
43+
RUN ldconfig

0 commit comments

Comments
 (0)