Compare commits

...

1 commit

Author SHA1 Message Date
e10348f958 add openssl 1.1.1l 2021-10-05 00:37:40 +02:00
8 changed files with 9 additions and 0 deletions

View file

@ -89,6 +89,14 @@ RUN cd libsodium-1.0.18 \
&& ./configure --prefix=$DEP_PREFIX \
&& make \
&& checkinstall -y --pkgname $PACKAGE_NAME-libsodium
RUN wget "https://www.openssl.org/source/openssl-1.1.1l.tar.gz" --no-check-certificate
RUN tar xzf openssl-1.1.1l.tar.gz
RUN cd openssl-1.1.1l \
&& ./config shared --prefix=/opt/php-7.4/dependencies no-idea no-mdc2 no-rc5 no-zlib no-ssl3 enable-unit-test no-ssl3-method enable-rfc3779 enable-cms enable-ec_nistp_64_gcc_128 \
&& make depend \
&& make -f Makefile all \
&& make test \
&& checkinstall -y --pkgname $PACKAGE_NAME-openssl
RUN wget https://www.php.net/distributions/$PHP_VERSION.tar.gz
RUN tar xzf $PHP_VERSION.tar.gz
RUN cd $PHP_VERSION \

View file

@ -11,6 +11,7 @@ COPY --from=build-stage /krb5-1.17.2/src/php-7.4.20-opt-krb5_1-1_amd64.deb .
COPY --from=build-stage /php-7.4.20/ext/imagick-3.4.4/php-7.4.20-opt-imagick_3.4.4-1_amd64.deb .
COPY --from=build-stage /php-7.4.20/ext/apcu-5.1.20/php-7.4.20-opt-apcu_5.1.20-1_amd64.deb .
COPY --from=build-stage /libsodium-1.0.18/php-7.4.20-opt-libsodium_1.0.18-1_amd64.deb .
COPY --from=build-stage /openssl-1.1.1l/php-7.4.20-opt-openssl_1.1.1l-1_amd64.deb .
COPY --from=build-stage /php-7.4.20/ext/php-memcached-3.1.5/php-7.4.20-opt-memcached_3.1.5-1_amd64.deb .
COPY --from=build-stage /php-7.4.20/ext/phpredis-5.3.4/php-7.4.20-opt-redis_5.3.4-1_amd64.deb .