Skip to content

Commit

Permalink
v8.3.13
Browse files Browse the repository at this point in the history
- php 8.3.13
- composer 2.8.1
- swoole 5.1.5
- phalcon 5.8.0
  • Loading branch information
joseluisq committed Oct 26, 2024
1 parent 83d9123 commit 95e8ab0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions 8.3-fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
FROM php:8.3.12-fpm-alpine3.19
FROM php:8.3.13-fpm-alpine3.19

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

# Composer - https://getcomposer.org/download/
ARG COMPOSER_VERSION="2.7.9"
ARG COMPOSER_SUM="b6de5e65c199d80ba11897fbe1364e063e858d483f6a81a176c4d60f2b1d6347"
ARG COMPOSER_VERSION="2.8.1"
ARG COMPOSER_SUM="930b376fbd2147a623ea7b704eb9d3b8b0d6072992207aa0535aa21f6f05378e"

# Swoole - https://github.com/swoole/swoole-src
ARG SWOOLE_VERSION="5.1.4"
ARG SWOOLE_VERSION="5.1.5"

# # Phalcon - https://github.com/phalcon/cphalcon
# ARG PHALCON_VERSION="5.7.0"
ARG PHALCON_VERSION="5.8.0"

# Install dependencies
RUN set -eux \
Expand Down Expand Up @@ -219,13 +219,13 @@ RUN set -eux \
&& docker-php-ext-install -j$(nproc) pcntl \
&& true \
\
# # Install phalcon
# && git clone --depth=1 --branch=v${PHALCON_VERSION} https://github.com/phalcon/cphalcon.git /opt/phalcon \
# && cd /opt/phalcon/build \
# && sh ./install \
# && docker-php-ext-enable phalcon \
# && true \
# \
# Install phalcon
&& git clone --depth=1 --branch=v${PHALCON_VERSION} https://github.com/phalcon/cphalcon.git /opt/phalcon \
&& cd /opt/phalcon/build \
&& sh ./install \
&& docker-php-ext-enable phalcon \
&& true \
\
# Install pdo_pgsql
&& docker-php-ext-install -j$(nproc) pdo_pgsql \
&& true \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ However, you can still find legacy versions like `7.4.x` or `8.0.x` on [Releases
| zstd ||||
| &nbsp; | &nbsp; | &nbsp; | &nbsp; |
| **Others** | | | |
| composer | v2.7 | v2.7 | v2.7 |
| composer | v2.7 | v2.7 | v2.8 |
| &nbsp; | &nbsp; | &nbsp; | &nbsp; |
| **Extensions file** | [8.1-fpm/extensions.txt](8.1-fpm/extensions.txt) | [8.2-fpm/extensions.txt](8.2-fpm/extensions.txt) | [8.3-fpm/extensions.txt](8.3-fpm/extensions.txt) |

Expand Down

0 comments on commit 95e8ab0

Please sign in to comment.