diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 43c6ccb..9afdfaf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,20 +22,6 @@ jobs: with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - - - name: Build and push 7.4 - uses: docker/build-push-action@v3 - with: - file: "./src/docker/7.4/Dockerfile" - push: true - tags: "${{env.BUILDKIT_IMAGE}}:7.4" - - - name: Build and push 8.0 - uses: docker/build-push-action@v3 - with: - file: "./src/docker/8.0/Dockerfile" - push: true - tags: "${{env.BUILDKIT_IMAGE}}:8.0" - name: Build and push 8.1 uses: docker/build-push-action@v3 diff --git a/README.md b/README.md index 4cb339c..d79a5d8 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ [![Build](https://github.com/jkaninda/nginx-php-fpm/actions/workflows/build.yml/badge.svg)](https://github.com/jkaninda/nginx-php-fpm/actions/workflows/build.yml) -[![Integration Test](https://github.com/jkaninda/nginx-php-fpm/actions/workflows/integration-tests.yml/badge.svg)](https://github.com/jkaninda/nginx-php-fpm/actions/workflows/integration-tests.yml) +[![Integration Testing](https://github.com/jkaninda/nginx-php-fpm/actions/workflows/integration-tests.yml/badge.svg)](https://github.com/jkaninda/nginx-php-fpm/actions/workflows/integration-tests.yml) ![Docker Image Size (latest by date)](https://img.shields.io/docker/image-size/jkaninda/nginx-php-fpm?style=flat-square) ![Docker Pulls](https://img.shields.io/docker/pulls/jkaninda/nginx-php-fpm?style=flat-square) @@ -44,7 +44,7 @@ version: '3' services: app: - image: jkaninda/nginx-php-fpm:8.2 + image: jkaninda/nginx-php-fpm:8.3 container_name: my-app restart: unless-stopped user: www-data # Optional - for production usage diff --git a/src/docker/8.3/Dockerfile b/src/docker/8.3/Dockerfile index 8756892..8c7a51c 100644 --- a/src/docker/8.3/Dockerfile +++ b/src/docker/8.3/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.3.3-fpm +FROM php:8.3.4-fpm ARG WORKDIR=/var/www/html ENV DOCUMENT_ROOT=${WORKDIR} ENV LARAVEL_PROCS_NUMBER=1