Skip to content

Commit

Permalink
v7.4.28
Browse files Browse the repository at this point in the history
- composer 2.2.6
- swoole 4.8.7

docker multi-arch image

- linux/amd64
- linux/386
  • Loading branch information
joseluisq committed Feb 20, 2022
1 parent eed4e26 commit 463e585
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/devel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ jobs:
name: PHP test
strategy:
matrix:
php: [7.4-fpm, 8.0-fpm, 8.1-fpm]
php:
- 7.4-fpm
- 8.0-fpm
- 8.1-fpm
arch:
- linux/amd64
- linux/386
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release-7.4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
-
name: Checkout
uses: actions/checkout@v2
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Docker meta
id: meta
Expand All @@ -38,5 +41,7 @@ jobs:
with:
push: true
context: .
platforms: linux/amd64,linux/386
# platforms: linux/amd64,linux/386,linux/arm64,linux/arm/v7,linux/arm/v6
file: 7.4-fpm/Dockerfile
tags: ${{ steps.meta.outputs.tags }}
6 changes: 3 additions & 3 deletions 7.4-fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
ARG COMPOSER_VERSION="2.2.6"
FROM composer:${COMPOSER_VERSION} as composer

FROM php:7.4.27-fpm-alpine3.15
FROM php:7.4.28-fpm-alpine3.15

LABEL Maintainer="Jose Quintana <git.io/joseluisq>" \
Description="PHP-FPM v7.4 with essential extensions on top of Alpine Linux."

# Swoole - https://github.com/swoole/swoole-src
ARG SWOOLE_VERSION="4.8.4"
ARG SWOOLE_VERSION="4.8.7"

# Install dependencies
RUN set -eux \
Expand Down Expand Up @@ -217,7 +217,7 @@ RUN set -eux \
&& true \
\
# Install sockets, sysvmsg, sysvsem, sysvshm (also needed by swoole)
&& CFLAGS="${CFLAGS:=} -D_GNU_SOURCE" docker-php-ext-install -j$(nproc) \
&& docker-php-ext-install -j$(nproc) \
sockets \
sysvmsg \
sysvsem \
Expand Down

0 comments on commit 463e585

Please sign in to comment.