Skip to content

Commit

Permalink
v8.2.6
Browse files Browse the repository at this point in the history
- alpine 3.17
- swoole 5.0.3
  • Loading branch information
joseluisq committed May 11, 2023
1 parent 05b9ef5 commit 25223f3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 2 additions & 4 deletions 8.2-fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.2.5-fpm-alpine3.16
FROM php:8.2.6-fpm-alpine3.17

LABEL Maintainer="Jose Quintana <joseluisq.net>" \
Description="PHP-FPM v8.2 with essential extensions on top of Alpine Linux."
Expand All @@ -8,7 +8,7 @@ ARG COMPOSER_VERSION="2.5.5"
ARG COMPOSER_SUM="566a6d1cf4be1cc3ac882d2a2a13817ffae54e60f5aa7c9137434810a5809ffc"

# Swoole - https://github.com/swoole/swoole-src
ARG SWOOLE_VERSION="5.0.2"
ARG SWOOLE_VERSION="5.0.3"

# Phalcon - https://github.com/phalcon/cphalcon
ARG PHALCON_VERSION="5.2.1"
Expand All @@ -25,7 +25,6 @@ RUN set -eux \
icu-libs \
imagemagick \
imap \
libexecinfo \
libffi \
libgmpxx \
libintl \
Expand Down Expand Up @@ -70,7 +69,6 @@ RUN set -eux \
imap-dev \
krb5-dev \
libc-dev \
libexecinfo-dev \
libjpeg-turbo-dev \
libpng-dev \
librdkafka-dev \
Expand Down
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,15 @@ buildx-fpm-80:
.PHONY: buildx-fpm-80

buildx-fpm-81:
@echo "Building PHP 8.1 Docker images (linux/amd64,linux/arm64)..."
@echo "Building PHP 8.1 Docker images ()..."
@docker buildx build -t joseluisq/php-fpm:8.1 --platform linux/amd64,linux/arm64 -f 8.1-fpm/Dockerfile .
.PHONY: buildx-fpm-81

buildx-fpm-82:
@echo "Building PHP 8.2 Docker images (linux/amd64,linux/arm64)..."
@docker buildx build -t joseluisq/php-fpm:8.2 --platform linux/amd64,linux/arm64 -f 8.2-fpm/Dockerfile .
.PHONY: buildx-fpm-82

run:
@docker run --rm -it \
-v $(PWD)/public:/usr/share/nginx/html \
Expand Down

0 comments on commit 25223f3

Please sign in to comment.