Skip to content

Commit

Permalink
v8.3.1
Browse files Browse the repository at this point in the history
- alpine 3.18
- composer 2.6.6
- phalcon 5.5.0 (enabled)
- xdebug 3.3.1 (enabled)
  • Loading branch information
joseluisq committed Dec 28, 2023
1 parent 0e69edc commit 3d8419e
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions 8.3-fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
FROM php:8.3.0-fpm-alpine3.17
FROM php:8.3.1-fpm-alpine3.18

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.6.5"
ARG COMPOSER_SUM="9a18e1a3aadbcb94c1bafd6c4a98ff931f4b43a456ef48575130466e19f05dd6"
ARG COMPOSER_VERSION="2.6.6"
ARG COMPOSER_SUM="72600201c73c7c4b218f1c0511b36d8537963e36aafa244757f52309f885b314"

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

# # Phalcon - https://github.com/phalcon/cphalcon
# ARG PHALCON_VERSION="5.4.0"
ARG PHALCON_VERSION="5.5.0"

# Install dependencies
RUN set -eux \
Expand Down Expand Up @@ -195,13 +195,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 \
# && cd cphalcon/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 \
&& cd cphalcon/build \
&& sh ./install \
&& docker-php-ext-enable phalcon \
&& true \
\
# Install pdo_pgsql
&& docker-php-ext-install -j$(nproc) pdo_pgsql \
&& true \
Expand Down Expand Up @@ -280,11 +280,11 @@ RUN set -eux \
&& docker-php-ext-install -j$(nproc) xsl \
&& true \
\
# # Install xdebug
# && pecl install xdebug \
# && docker-php-ext-enable xdebug \
# && true \
# \
# Install xdebug
&& pecl install xdebug \
&& docker-php-ext-enable xdebug \
&& true \
\
# Install yaml
&& pecl install yaml \
&& docker-php-ext-enable yaml \
Expand Down

0 comments on commit 3d8419e

Please sign in to comment.