File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed
Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 3434 steps :
3535 - checkout
3636 - run : make test-image IMAGE="php:fpm-alpine" DOCKERFILE="alpine"
37+ - run : make test-image IMAGE="php:fpm-buster" DOCKERFILE="stretch"
3738
3839 test-7.1 :
3940 machine : true
6768 - checkout
6869 - run : make test-image IMAGE="php:7.4-fpm-alpine3.10" DOCKERFILE="alpine"
6970 - run : make test-image IMAGE="php:7.4-fpm-alpine3.11" DOCKERFILE="alpine"
71+ - run : make test-image IMAGE="php:7.4-fpm-buster" DOCKERFILE="stretch"
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ lint: php-fpm-healthcheck ## Lint code
1111
1212test : # # Test code in multiple images
1313 $(MAKE ) test-image IMAGE=" php:fpm-alpine" DOCKERFILE=" alpine"
14+ $(MAKE ) test-image IMAGE=" php:fpm-buster" DOCKERFILE=" buster"
1415 $(MAKE ) test-image IMAGE=" php:7.1-fpm-alpine3.7" DOCKERFILE=" alpine"
1516 $(MAKE ) test-image IMAGE=" php:7.1-fpm-alpine3.8" DOCKERFILE=" alpine"
1617 $(MAKE ) test-image IMAGE=" php:7.2-fpm-alpine3.7" DOCKERFILE=" alpine"
@@ -22,6 +23,7 @@ test: ## Test code in multiple images
2223 $(MAKE ) test-image IMAGE=" php:7.1-fpm-stretch" DOCKERFILE=" stretch"
2324 $(MAKE ) test-image IMAGE=" php:7.2-fpm-stretch" DOCKERFILE=" stretch"
2425 $(MAKE ) test-image IMAGE=" php:7.3-fpm-stretch" DOCKERFILE=" stretch"
26+ $(MAKE ) test-image IMAGE=" php:7.4-fpm-buster" DOCKERFILE=" buster"
2527
2628test-image :
2729 ./test/docker.sh ${DOCKERFILE} ${IMAGE}
Original file line number Diff line number Diff line change 1+ FROM php:7.4-fpm-buster
2+
3+ # Required software
4+ RUN set -x \
5+ && apt-get update \
6+ && apt-get install -y libfcgi-bin
7+
8+ # Enable php fpm status page
9+ RUN set -xe && echo "pm.status_path = /status" >> /usr/local/etc/php-fpm.d/zz-docker.conf
10+
11+ COPY ./php-fpm-healthcheck /usr/local/bin/
You can’t perform that action at this time.
0 commit comments