mirror of
https://github.com/phpmyadmin/docker.git
synced 2026-08-24 10:13:22 -05:00
Remove superfluous uploadprogress.tar.gz
Signed-off-by: Daniel Rudolf <github.com@daniel-rudolf.de>
This commit is contained in:
committed by
Isaac Bennetch
parent
fc38d23ff1
commit
4bce58ddab
@@ -25,9 +25,9 @@ RUN set -ex; \
|
||||
; \
|
||||
\
|
||||
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; \
|
||||
curl -fsSL -o /usr/src/php/ext/uploadprogress.tar.gz "$UPLOAD_PROGRESS_EXT_URL"; \
|
||||
echo "$UPLOAD_PROGRESS_SHA256 /usr/src/php/ext/uploadprogress.tar.gz" | sha256sum -c -; \
|
||||
tar -xf /usr/src/php/ext/uploadprogress.tar.gz -C /usr/src/php/ext/uploadprogress --strip-components=1; \
|
||||
\
|
||||
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp --with-xpm; \
|
||||
docker-php-ext-install -j "$(nproc)" \
|
||||
@@ -40,7 +40,7 @@ RUN set -ex; \
|
||||
uploadprogress \
|
||||
; \
|
||||
\
|
||||
rm -r /usr/src/php/ext/uploadprogress; \
|
||||
rm -r /usr/src/php/ext/uploadprogress /usr/src/php/ext/uploadprogress.tar.gz; \
|
||||
\
|
||||
apt-mark auto '.*' > /dev/null; \
|
||||
apt-mark manual $savedAptMark; \
|
||||
|
||||
Reference in New Issue
Block a user