Skip to content

Commit

Permalink
v8.0.16
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 463e585 commit 831918b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release-8.0.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: 8.0-fpm/Dockerfile
tags: ${{ steps.meta.outputs.tags }}
8 changes: 4 additions & 4 deletions 8.0-fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Composer - https://hub.docker.com/_/composer
ARG COMPOSER_VERSION="2.2.5"
ARG COMPOSER_VERSION="2.2.6"
FROM composer:${COMPOSER_VERSION} as composer

FROM php:8.0.15-fpm-alpine3.15
FROM php:8.0.16-fpm-alpine3.15

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

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

# Install dependencies
RUN set -eux \
Expand Down Expand Up @@ -226,7 +226,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 831918b

Please sign in to comment.