Skip to content

Commit

Permalink
Merge pull request #75 from sparkfabrik/feature/2690_add_support_for_8.3
Browse files Browse the repository at this point in the history
platform/#2690: add support for PHP 8.3
  • Loading branch information
Monska85 authored Feb 8, 2024
2 parents b1c2c07 + 12f2290 commit 27221c3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
tag: [8-2-3, 8-1-16, 8-1-10]
tag: [8-3-2, 8-2-3, 8-1-16]
flavour: ["", "-rootless"]
steps:
- uses: actions/checkout@v3
Expand All @@ -36,8 +36,7 @@ jobs:
if: github.ref == 'refs/heads/master'
strategy:
matrix:
tag:
[8.1.10-fpm-alpine3.16, 8.1.16-fpm-alpine3.16, 8.2.3-fpm-alpine3.16]
tag: [8.3.2-fpm-alpine3.18, 8.2.3-fpm-alpine3.16, 8.1.16-fpm-alpine3.16]
flavour: ["", "-rootless"]
steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions 8/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
ARG PHPVER

FROM golang:1.16.6-alpine3.14 as mailhog
FROM golang:1.22.0-alpine3.18 as mailhog

# Install mailhog.
ENV MAILHOG_VERSION 1.0.1
RUN apk add git && \
go get github.com/mailhog/MailHog@v${MAILHOG_VERSION} && \
go install github.com/mailhog/MailHog@v${MAILHOG_VERSION} && \
mv /go/bin/MailHog /go/mailhog

FROM php:$PHPVER as dist
Expand Down Expand Up @@ -35,7 +35,7 @@ ENV PHP_FPM_MIN_SPARE_SERVERS 1
ENV PHP_FPM_MAX_SPARE_SERVERS 3
ENV PHP_FPM_PM_STATUS_PATH /status

ENV XDEBUG_VERSION 3.2.0
ENV XDEBUG_VERSION 3.3.1
ENV MEMCACHE_VERSION 3.2.0
ENV PHPREDIS_VERSION 5.3.7
RUN export XDEBUG_DEPS="linux-headers" && \
Expand Down
14 changes: 10 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,11 @@ COMPOSER_VERSION ?= 2.5.4
# build-8-1-12-rootless: PHPVER=8.1.12-fpm-alpine3.16
# build-8-1-12-rootless: build-rootless-template

build-8-1-10: PHPVER=8.1.10-fpm-alpine3.16
build-8-1-10: build-template
# build-8-1-10: PHPVER=8.1.10-fpm-alpine3.16
# build-8-1-10: build-template

build-8-1-10-rootless: PHPVER=8.1.10-fpm-alpine3.16
build-8-1-10-rootless: build-rootless-template
# build-8-1-10-rootless: PHPVER=8.1.10-fpm-alpine3.16
# build-8-1-10-rootless: build-rootless-template

build-8-1-16: PHPVER=8.1.16-fpm-alpine3.16
build-8-1-16: build-template
Expand All @@ -152,6 +152,12 @@ build-8-2-3: build-template
build-8-2-3-rootless: PHPVER=8.2.3-fpm-alpine3.16
build-8-2-3-rootless: build-rootless-template

build-8-3-2: PHPVER=8.3.2-fpm-alpine3.18
build-8-3-2: build-template

build-8-3-2-rootless: PHPVER=8.3.2-fpm-alpine3.18
build-8-3-2-rootless: build-rootless-template


build-template: guessing-folder build-test-image
docker buildx build \
Expand Down

0 comments on commit 27221c3

Please sign in to comment.