update to php 7.4.28

This commit is contained in:
lookshe 2022-03-26 22:56:52 +01:00
parent b860da2e5a
commit 73a6fa123d
24 changed files with 15 additions and 15 deletions

View file

@ -3,7 +3,7 @@ FROM debian/eol:wheezy
ENV MAIN_PREFIX_NO_ROOT opt/php-7.4
ENV MAIN_PREFIX /$MAIN_PREFIX_NO_ROOT
ENV DEP_PREFIX $MAIN_PREFIX/dependencies
ENV PHP_VERSION php-7.4.20
ENV PHP_VERSION php-7.4.28
ENV PACKAGE_NAME $PHP_VERSION-opt
RUN apt-get update \
@ -69,7 +69,7 @@ RUN cd oniguruma-6.9.6 \
&& ./configure --prefix=$DEP_PREFIX \
&& make \
&& checkinstall -y --pkgname $PACKAGE_NAME-oniguruma
RUN wget https://libzip.org/download/libzip-0.11.2.tar.gz
RUN wget https://libzip.org/download/libzip-0.11.2.tar.gz --no-check-certificate
RUN tar xzf libzip-0.11.2.tar.gz
# in this case checkinstall only works after "make install"
RUN cd libzip-0.11.2 \
@ -83,7 +83,7 @@ RUN cd libgd-2.1.1 \
&& ./configure --prefix=$DEP_PREFIX \
&& make \
&& checkinstall -y --pkgname $PACKAGE_NAME-libgd
RUN curl https://download.libsodium.org/libsodium/releases/libsodium-1.0.18.tar.gz > libsodium-1.0.18.tar.gz
RUN curl -k https://download.libsodium.org/libsodium/releases/libsodium-1.0.18.tar.gz > libsodium-1.0.18.tar.gz
RUN tar xzf libsodium-1.0.18.tar.gz
RUN cd libsodium-1.0.18 \
&& ./configure --prefix=$DEP_PREFIX \

View file

@ -1,16 +1,16 @@
FROM lookshe/php-7.4-opt-build AS build-stage
FROM scratch AS export-stage
COPY --from=build-stage /php-7.4.20/php-7.4.20-opt_7.4.20-1_amd64.deb .
COPY --from=build-stage /libzip-0.11.2/php-7.4.20-opt-libzip_0.11.2-1_amd64.deb .
COPY --from=build-stage /icu/source/php-7.4.20-opt-icu_1-1_amd64.deb .
COPY --from=build-stage /oniguruma-6.9.6/php-7.4.20-opt-oniguruma_6.9.6-1_amd64.deb .
COPY --from=build-stage /libgd-2.1.1/php-7.4.20-opt-libgd_2.1.1-1_amd64.deb .
COPY --from=build-stage /libjpeg-turbo-2.0.6/build/php-7.4.20-opt-libjpeg-turbo_1-1_amd64.deb .
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 /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 .
COPY --from=build-stage /php-7.4.28/php-7.4.28-opt_7.4.28-1_amd64.deb .
COPY --from=build-stage /libzip-0.11.2/php-7.4.28-opt-libzip_0.11.2-1_amd64.deb .
COPY --from=build-stage /icu/source/php-7.4.28-opt-icu_1-1_amd64.deb .
COPY --from=build-stage /oniguruma-6.9.6/php-7.4.28-opt-oniguruma_6.9.6-1_amd64.deb .
COPY --from=build-stage /libgd-2.1.1/php-7.4.28-opt-libgd_2.1.1-1_amd64.deb .
COPY --from=build-stage /libjpeg-turbo-2.0.6/build/php-7.4.28-opt-libjpeg-turbo_1-1_amd64.deb .
COPY --from=build-stage /krb5-1.17.2/src/php-7.4.28-opt-krb5_1-1_amd64.deb .
COPY --from=build-stage /php-7.4.28/ext/imagick-3.4.4/php-7.4.28-opt-imagick_3.4.4-1_amd64.deb .
COPY --from=build-stage /php-7.4.28/ext/apcu-5.1.20/php-7.4.28-opt-apcu_5.1.20-1_amd64.deb .
COPY --from=build-stage /libsodium-1.0.18/php-7.4.28-opt-libsodium_1.0.18-1_amd64.deb .
COPY --from=build-stage /php-7.4.28/ext/php-memcached-3.1.5/php-7.4.28-opt-memcached_3.1.5-1_amd64.deb .
COPY --from=build-stage /php-7.4.28/ext/phpredis-5.3.4/php-7.4.28-opt-redis_5.3.4-1_amd64.deb .

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.