Make file executable
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Lennard Brinkhaus 2022-01-11 19:31:25 +01:00
parent 9f805c19cb
commit 118d4b33ea
Signed by: lennard.brinkhaus
GPG Key ID: D4C9B6A87F97B070
2 changed files with 4 additions and 2 deletions

View File

@ -88,7 +88,7 @@ RUN set -eux; \
\
apk del --no-network .fetch-deps
COPY docker-php-source /usr/local/bin/
COPY docker-php-source /usr/local/bin/docker-php-source
RUN set -eux; \
apk add --no-cache --virtual .build-deps \
@ -110,6 +110,7 @@ RUN set -eux; \
CPPFLAGS="$PHP_CPPFLAGS" \
LDFLAGS="$PHP_LDFLAGS" \
; \
chmod +x docker-php-source; \
docker-php-source extract; \
cd /usr/src/php; \
gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; \

View File

@ -88,7 +88,7 @@ RUN set -eux; \
\
apk del --no-network .fetch-deps
COPY docker-php-source /usr/local/bin/
COPY docker-php-source /usr/local/bin/docker-php-source
RUN set -eux; \
apk add --no-cache --virtual .build-deps \
@ -110,6 +110,7 @@ RUN set -eux; \
CPPFLAGS="$PHP_CPPFLAGS" \
LDFLAGS="$PHP_LDFLAGS" \
; \
chmod +x docker-php-source; \
docker-php-source extract; \
cd /usr/src/php; \
gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; \