File tree 2 files changed +9
-10
lines changed
2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 1
1
name : Test container structure
2
2
3
- on :
4
- pull_request :
5
- branches :
6
- - main
3
+ on : [pull_request]
7
4
8
5
env :
9
6
REGISTRY : docker.io
Original file line number Diff line number Diff line change 1
- FROM php:8.3.11 -cli-alpine3.20 as compile
1
+ ARG BASEIMAGE= " php:8.3.13 -cli-alpine3.20"
2
2
3
- ENV PHP_REDIS_VERSION="6.0.2" \
4
- PHP_MONGODB_VERSION="1.19.3" \
5
- PHP_SWOOLE_VERSION="v5.1.3" \
3
+ FROM $BASEIMAGE as compile
4
+
5
+ ENV PHP_REDIS_VERSION="6.1.0" \
6
+ PHP_MONGODB_VERSION="1.20.0" \
7
+ PHP_SWOOLE_VERSION="v5.1.5" \
6
8
PHP_IMAGICK_VERSION="3.7.0" \
7
- PHP_YAML_VERSION="2.2.3 " \
9
+ PHP_YAML_VERSION="2.2.4 " \
8
10
PHP_MAXMINDDB_VERSION="v1.11.1" \
9
11
PHP_SCRYPT_VERSION="2.0.1" \
10
12
PHP_ZSTD_VERSION="0.13.3" \
@@ -149,7 +151,7 @@ RUN \
149
151
./configure && \
150
152
make && make install
151
153
152
- FROM php:8.3.11-cli-alpine3.20 as final
154
+ FROM $BASEIMAGE as final
153
155
154
156
LABEL maintainer=
"[email protected] "
155
157
You can’t perform that action at this time.
0 commit comments