Skip to content

Commit

Permalink
fix deprecated uses of ENV without equals
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-sainthillier committed Dec 11, 2024
1 parent f2d2d1b commit c07ea82
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions 7.4-ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN apk add --no-cache \
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer

# PHP Extensions
ENV PHPIZE_DEPS \
ENV PHPIZE_DEPS="\
autoconf \
cmake \
file \
Expand All @@ -33,7 +33,7 @@ ENV PHPIZE_DEPS \
pcre-dev \
pkgconf \
re2c \
zlib-dev
zlib-dev"

RUN apk add --no-cache --virtual .build-deps \
$PHPIZE_DEPS && \
Expand Down
4 changes: 2 additions & 2 deletions 8.0-ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN apk add --no-cache \
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer

# PHP Extensions
ENV PHPIZE_DEPS \
ENV PHPIZE_DEPS="\
autoconf \
cmake \
file \
Expand All @@ -33,7 +33,7 @@ ENV PHPIZE_DEPS \
pcre-dev \
pkgconf \
re2c \
zlib-dev
zlib-dev"

RUN apk add --no-cache --virtual .build-deps \
$PHPIZE_DEPS && \
Expand Down
4 changes: 2 additions & 2 deletions 8.1-ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN apk add --no-cache \
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer

# PHP Extensions
ENV PHPIZE_DEPS \
ENV PHPIZE_DEPS="\
autoconf \
cmake \
file \
Expand All @@ -33,7 +33,7 @@ ENV PHPIZE_DEPS \
pcre-dev \
pkgconf \
re2c \
zlib-dev
zlib-dev"

RUN apk add --no-cache --virtual .build-deps \
$PHPIZE_DEPS && \
Expand Down
4 changes: 2 additions & 2 deletions 8.2-ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN apk add --no-cache \
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer

# PHP Extensions
ENV PHPIZE_DEPS \
ENV PHPIZE_DEPS="\
autoconf \
cmake \
file \
Expand All @@ -33,7 +33,7 @@ ENV PHPIZE_DEPS \
pcre-dev \
pkgconf \
re2c \
zlib-dev
zlib-dev"

RUN apk add --no-cache --virtual .build-deps \
$PHPIZE_DEPS && \
Expand Down
4 changes: 2 additions & 2 deletions 8.3-ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN apk add --no-cache \
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer

# PHP Extensions
ENV PHPIZE_DEPS \
ENV PHPIZE_DEPS="\
autoconf \
cmake \
file \
Expand All @@ -33,7 +33,7 @@ ENV PHPIZE_DEPS \
pcre-dev \
pkgconf \
re2c \
zlib-dev
zlib-dev"

RUN apk add --no-cache --virtual .build-deps \
$PHPIZE_DEPS && \
Expand Down

0 comments on commit c07ea82

Please sign in to comment.