Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions php-8.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
FROM php:8.0-cli-alpine as compile
FROM php:8.0-cli-alpine AS compile

ENV PHP_REDIS_VERSION="6.1.0" \
PHP_SWOOLE_VERSION="v5.1.2" \
PHP_SWOOLE_VERSION="v5.1.7" \
PHP_IMAGICK_VERSION="3.7.0" \
PHP_YAML_VERSION="2.2.3" \
PHP_MAXMINDDB_VERSION="v1.11.1" \
PHP_YAML_VERSION="2.2.4" \
PHP_MAXMINDDB_VERSION="v1.12.0" \
PHP_SCRYPT_VERSION="2.0.1" \
PHP_ZSTD_VERSION="0.13.3" \
PHP_ZSTD_VERSION="0.14.0" \
PHP_BROTLI_VERSION="0.15.0" \
PHP_SNAPPY_VERSION="c27f830dcfe6c41eb2619a374de10fd0597f4939" \
PHP_LZ4_VERSION="2f006c3e4f1fb3a60d2656fc164f9ba26b71e995" \
PHP_XDEBUG_VERSION="3.3.1"
PHP_SNAPPY_VERSION="0.2.2" \
PHP_LZ4_VERSION="0.4.4" \
PHP_XDEBUG_VERSION="3.4.1"

RUN \
apk add --no-cache --virtual .deps \
Expand Down Expand Up @@ -86,7 +86,7 @@ RUN \
make && make install

# Zstd Compression
FROM compile as zstd
FROM compile AS zstd
RUN git clone --recursive -n https://github.com/kjdev/php-ext-zstd.git \
&& cd php-ext-zstd \
&& git checkout $PHP_ZSTD_VERSION \
Expand All @@ -95,7 +95,7 @@ RUN git clone --recursive -n https://github.com/kjdev/php-ext-zstd.git \
&& make && make install

## Brotli Extension
FROM compile as brotli
FROM compile AS brotli
RUN git clone https://github.com/kjdev/php-ext-brotli.git \
&& cd php-ext-brotli \
&& git reset --hard $PHP_BROTLI_VERSION \
Expand Down Expand Up @@ -139,7 +139,7 @@ RUN \
./configure && \
make && make install

FROM php:8.0-cli-alpine as final
FROM php:8.0-cli-alpine AS final

LABEL maintainer="[email protected]"

Expand Down
22 changes: 11 additions & 11 deletions php-8.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
FROM php:8.1-cli-alpine as compile
FROM php:8.1-cli-alpine AS compile

ENV PHP_REDIS_VERSION="6.1.0" \
PHP_SWOOLE_VERSION="v5.1.2" \
PHP_SWOOLE_VERSION="v5.1.7" \
PHP_IMAGICK_VERSION="3.7.0" \
PHP_YAML_VERSION="2.2.3" \
PHP_MAXMINDDB_VERSION="v1.11.1" \
PHP_YAML_VERSION="2.2.4" \
PHP_MAXMINDDB_VERSION="v1.12.0" \
PHP_SCRYPT_VERSION="2.0.1" \
PHP_ZSTD_VERSION="0.13.3" \
PHP_ZSTD_VERSION="0.14.0" \
PHP_BROTLI_VERSION="0.15.0" \
PHP_SNAPPY_VERSION="c27f830dcfe6c41eb2619a374de10fd0597f4939" \
PHP_LZ4_VERSION="2f006c3e4f1fb3a60d2656fc164f9ba26b71e995" \
PHP_XDEBUG_VERSION="3.3.1"
PHP_SNAPPY_VERSION="0.2.2" \
PHP_LZ4_VERSION="0.4.4" \
PHP_XDEBUG_VERSION="3.4.1"

RUN \
apk add --no-cache --virtual .deps \
Expand Down Expand Up @@ -86,7 +86,7 @@ RUN \
make && make install

# Zstd Compression
FROM compile as zstd
FROM compile AS zstd
RUN git clone --recursive -n https://github.com/kjdev/php-ext-zstd.git \
&& cd php-ext-zstd \
&& git checkout $PHP_ZSTD_VERSION \
Expand All @@ -95,7 +95,7 @@ RUN git clone --recursive -n https://github.com/kjdev/php-ext-zstd.git \
&& make && make install

## Brotli Extension
FROM compile as brotli
FROM compile AS brotli
RUN git clone https://github.com/kjdev/php-ext-brotli.git \
&& cd php-ext-brotli \
&& git reset --hard $PHP_BROTLI_VERSION \
Expand Down Expand Up @@ -139,7 +139,7 @@ RUN \
./configure && \
make && make install

FROM php:8.1-cli-alpine as final
FROM php:8.1-cli-alpine AS final

LABEL maintainer="[email protected]"

Expand Down
22 changes: 11 additions & 11 deletions php-8.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
FROM php:8.2-cli-alpine as compile
FROM php:8.2-cli-alpine AS compile

ENV PHP_REDIS_VERSION="6.1.0" \
PHP_SWOOLE_VERSION="v5.1.2" \
PHP_SWOOLE_VERSION="v5.1.7" \
PHP_IMAGICK_VERSION="3.7.0" \
PHP_YAML_VERSION="2.2.3" \
PHP_MAXMINDDB_VERSION="v1.11.1" \
PHP_YAML_VERSION="2.2.4" \
PHP_MAXMINDDB_VERSION="v1.12.0" \
PHP_SCRYPT_VERSION="2.0.1" \
PHP_ZSTD_VERSION="0.13.3" \
PHP_ZSTD_VERSION="0.14.0" \
PHP_BROTLI_VERSION="0.15.0" \
PHP_SNAPPY_VERSION="c27f830dcfe6c41eb2619a374de10fd0597f4939" \
PHP_LZ4_VERSION="2f006c3e4f1fb3a60d2656fc164f9ba26b71e995" \
PHP_XDEBUG_VERSION="3.3.1"
PHP_SNAPPY_VERSION="0.2.2" \
PHP_LZ4_VERSION="0.4.4" \
PHP_XDEBUG_VERSION="3.4.1"

RUN \
apk add --no-cache --virtual .deps \
Expand Down Expand Up @@ -86,7 +86,7 @@ RUN \
make && make install

# Zstd Compression
FROM compile as zstd
FROM compile AS zstd
RUN git clone --recursive -n https://github.com/kjdev/php-ext-zstd.git \
&& cd php-ext-zstd \
&& git checkout $PHP_ZSTD_VERSION \
Expand All @@ -95,7 +95,7 @@ RUN git clone --recursive -n https://github.com/kjdev/php-ext-zstd.git \
&& make && make install

## Brotli Extension
FROM compile as brotli
FROM compile AS brotli
RUN git clone https://github.com/kjdev/php-ext-brotli.git \
&& cd php-ext-brotli \
&& git reset --hard $PHP_BROTLI_VERSION \
Expand Down Expand Up @@ -139,7 +139,7 @@ RUN \
./configure && \
make && make install

FROM php:8.2-cli-alpine as final
FROM php:8.2-cli-alpine AS final

LABEL maintainer="[email protected]"

Expand Down
22 changes: 11 additions & 11 deletions php-8.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
FROM php:8.3-cli-alpine as compile
FROM php:8.3-cli-alpine AS compile

ENV PHP_REDIS_VERSION="6.1.0" \
PHP_SWOOLE_VERSION="v5.1.2" \
PHP_SWOOLE_VERSION="v5.1.7" \
PHP_IMAGICK_VERSION="3.7.0" \
PHP_YAML_VERSION="2.2.3" \
PHP_MAXMINDDB_VERSION="v1.11.1" \
PHP_YAML_VERSION="2.2.4" \
PHP_MAXMINDDB_VERSION="v1.12.0" \
PHP_SCRYPT_VERSION="2.0.1" \
PHP_ZSTD_VERSION="0.13.3" \
PHP_ZSTD_VERSION="0.14.0" \
PHP_BROTLI_VERSION="0.15.0" \
PHP_SNAPPY_VERSION="c27f830dcfe6c41eb2619a374de10fd0597f4939" \
PHP_LZ4_VERSION="2f006c3e4f1fb3a60d2656fc164f9ba26b71e995" \
PHP_XDEBUG_VERSION="3.3.1"
PHP_SNAPPY_VERSION="0.2.2" \
PHP_LZ4_VERSION="0.4.4" \
PHP_XDEBUG_VERSION="3.4.1"

RUN \
apk add --no-cache --virtual .deps \
Expand Down Expand Up @@ -86,7 +86,7 @@ RUN \
make && make install

# Zstd Compression
FROM compile as zstd
FROM compile AS zstd
RUN git clone --recursive -n https://github.com/kjdev/php-ext-zstd.git \
&& cd php-ext-zstd \
&& git checkout $PHP_ZSTD_VERSION \
Expand All @@ -95,7 +95,7 @@ RUN git clone --recursive -n https://github.com/kjdev/php-ext-zstd.git \
&& make && make install

## Brotli Extension
FROM compile as brotli
FROM compile AS brotli
RUN git clone https://github.com/kjdev/php-ext-brotli.git \
&& cd php-ext-brotli \
&& git reset --hard $PHP_BROTLI_VERSION \
Expand Down Expand Up @@ -139,7 +139,7 @@ RUN \
./configure && \
make && make install

FROM php:8.3-cli-alpine as final
FROM php:8.3-cli-alpine AS final

LABEL maintainer="[email protected]"

Expand Down