Skip to content

Commit

Permalink
v8.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
joseluisq committed Jun 10, 2024
1 parent ae46b39 commit ec1a891
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions 8.3-fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.3.7-fpm-alpine3.18
FROM php:8.3.8-fpm-alpine3.19

LABEL Maintainer="Jose Quintana <joseluisq.net>" \
Description="PHP-FPM v8.3 with essential extensions on top of Alpine Linux."
Expand All @@ -8,10 +8,10 @@ ARG COMPOSER_VERSION="2.7.6"
ARG COMPOSER_SUM="29dc9a19ef33535db061b31180b2a833a7cf8d2cf4145b33a2f83504877bba08"

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

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

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

0 comments on commit ec1a891

Please sign in to comment.