Compare commits

..
3 Commits
6 changed files with 34 additions and 30 deletions
+4
View File
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [5.2.3.1] - 2025-10-08
- Remove leftover uploadprogress.tar.gz download after installation (#465)
## [5.2.3] - 2025-10-08
- Update to PHP 8.3
+6 -6
View File
@@ -22,10 +22,10 @@ RUN set -ex; \
libzip-dev \
; \
\
mkdir -p /usr/src/php/ext/uploadprogress; \
curl -fsSL -o uploadprogress.tar.gz "$UPLOAD_PROGRESS_EXT_URL"; \
echo "$UPLOAD_PROGRESS_SHA256 uploadprogress.tar.gz" | sha256sum -c -; \
tar -xf uploadprogress.tar.gz -C /usr/src/php/ext/uploadprogress --strip-components=1; \
mkdir -p /tmp/uploadprogress; \
curl -fsSL -o /tmp/uploadprogress/uploadprogress.tar.gz "$UPLOAD_PROGRESS_EXT_URL"; \
echo "$UPLOAD_PROGRESS_SHA256 /tmp/uploadprogress/uploadprogress.tar.gz" | sha256sum -c -; \
tar -xf /tmp/uploadprogress/uploadprogress.tar.gz -C /tmp/uploadprogress --strip-components=1; \
\
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp --with-xpm; \
docker-php-ext-install -j "$(nproc)" \
@@ -35,10 +35,10 @@ RUN set -ex; \
opcache \
zip \
bcmath \
uploadprogress \
/tmp/uploadprogress \
; \
\
rm -r /usr/src/php/ext/uploadprogress; \
rm -r /tmp/uploadprogress; \
\
runDeps="$( \
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \
+6 -6
View File
@@ -24,10 +24,10 @@ RUN set -ex; \
libzip-dev \
; \
\
mkdir -p /usr/src/php/ext/uploadprogress; \
curl -fsSL -o uploadprogress.tar.gz "$UPLOAD_PROGRESS_EXT_URL"; \
echo "$UPLOAD_PROGRESS_SHA256 uploadprogress.tar.gz" | sha256sum -c -; \
tar -xf uploadprogress.tar.gz -C /usr/src/php/ext/uploadprogress --strip-components=1; \
mkdir -p /tmp/uploadprogress; \
curl -fsSL -o /tmp/uploadprogress/uploadprogress.tar.gz "$UPLOAD_PROGRESS_EXT_URL"; \
echo "$UPLOAD_PROGRESS_SHA256 /tmp/uploadprogress/uploadprogress.tar.gz" | sha256sum -c -; \
tar -xf /tmp/uploadprogress/uploadprogress.tar.gz -C /tmp/uploadprogress --strip-components=1; \
\
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp --with-xpm; \
docker-php-ext-install -j "$(nproc)" \
@@ -37,10 +37,10 @@ RUN set -ex; \
opcache \
zip \
bcmath \
uploadprogress \
/tmp/uploadprogress \
; \
\
rm -r /usr/src/php/ext/uploadprogress; \
rm -r /tmp/uploadprogress; \
\
apt-mark auto '.*' > /dev/null; \
apt-mark manual $savedAptMark; \
+6 -6
View File
@@ -25,10 +25,10 @@ RUN set -ex; \
libzip-dev \
; \
\
mkdir -p /usr/src/php/ext/uploadprogress; \
curl -fsSL -o uploadprogress.tar.gz "$UPLOAD_PROGRESS_EXT_URL"; \
echo "$UPLOAD_PROGRESS_SHA256 uploadprogress.tar.gz" | sha256sum -c -; \
tar -xf uploadprogress.tar.gz -C /usr/src/php/ext/uploadprogress --strip-components=1; \
mkdir -p /tmp/uploadprogress; \
curl -fsSL -o /tmp/uploadprogress/uploadprogress.tar.gz "$UPLOAD_PROGRESS_EXT_URL"; \
echo "$UPLOAD_PROGRESS_SHA256 /tmp/uploadprogress/uploadprogress.tar.gz" | sha256sum -c -; \
tar -xf /tmp/uploadprogress/uploadprogress.tar.gz -C /tmp/uploadprogress --strip-components=1; \
\
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp --with-xpm; \
docker-php-ext-install -j "$(nproc)" \
@@ -38,10 +38,10 @@ RUN set -ex; \
opcache \
zip \
bcmath \
uploadprogress \
/tmp/uploadprogress \
; \
\
rm -r /usr/src/php/ext/uploadprogress; \
rm -r /tmp/uploadprogress; \
\
apt-mark auto '.*' > /dev/null; \
apt-mark manual $savedAptMark; \
+6 -6
View File
@@ -23,10 +23,10 @@ RUN set -ex; \
libzip-dev \
; \
\
mkdir -p /usr/src/php/ext/uploadprogress; \
curl -fsSL -o uploadprogress.tar.gz "$UPLOAD_PROGRESS_EXT_URL"; \
echo "$UPLOAD_PROGRESS_SHA256 uploadprogress.tar.gz" | sha256sum -c -; \
tar -xf uploadprogress.tar.gz -C /usr/src/php/ext/uploadprogress --strip-components=1; \
mkdir -p /tmp/uploadprogress; \
curl -fsSL -o /tmp/uploadprogress/uploadprogress.tar.gz "$UPLOAD_PROGRESS_EXT_URL"; \
echo "$UPLOAD_PROGRESS_SHA256 /tmp/uploadprogress/uploadprogress.tar.gz" | sha256sum -c -; \
tar -xf /tmp/uploadprogress/uploadprogress.tar.gz -C /tmp/uploadprogress --strip-components=1; \
\
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp --with-xpm; \
docker-php-ext-install -j "$(nproc)" \
@@ -36,10 +36,10 @@ RUN set -ex; \
opcache \
zip \
bcmath \
uploadprogress \
/tmp/uploadprogress \
; \
\
rm -r /usr/src/php/ext/uploadprogress; \
rm -r /tmp/uploadprogress; \
\
runDeps="$( \
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \
+6 -6
View File
@@ -25,10 +25,10 @@ RUN set -ex; \
libzip-dev \
; \
\
mkdir -p /usr/src/php/ext/uploadprogress; \
curl -fsSL -o uploadprogress.tar.gz "$UPLOAD_PROGRESS_EXT_URL"; \
echo "$UPLOAD_PROGRESS_SHA256 uploadprogress.tar.gz" | sha256sum -c -; \
tar -xf uploadprogress.tar.gz -C /usr/src/php/ext/uploadprogress --strip-components=1; \
mkdir -p /tmp/uploadprogress; \
curl -fsSL -o /tmp/uploadprogress/uploadprogress.tar.gz "$UPLOAD_PROGRESS_EXT_URL"; \
echo "$UPLOAD_PROGRESS_SHA256 /tmp/uploadprogress/uploadprogress.tar.gz" | sha256sum -c -; \
tar -xf /tmp/uploadprogress/uploadprogress.tar.gz -C /tmp/uploadprogress --strip-components=1; \
\
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp --with-xpm; \
docker-php-ext-install -j "$(nproc)" \
@@ -38,10 +38,10 @@ RUN set -ex; \
opcache \
zip \
bcmath \
uploadprogress \
/tmp/uploadprogress \
; \
\
rm -r /usr/src/php/ext/uploadprogress; \
rm -r /tmp/uploadprogress; \
\
apt-mark auto '.*' > /dev/null; \
apt-mark manual $savedAptMark; \