2025-02-15 23:32:15 +01:00
|
|
|
# ================================
|
|
|
|
|
# Stage 0: Build PHP Base Image
|
|
|
|
|
# ================================
|
2025-04-13 02:30:09 +02:00
|
|
|
FROM --platform=$TARGETOS/$TARGETARCH php:8.4-fpm-alpine
|
2025-02-15 23:32:15 +01:00
|
|
|
|
|
|
|
|
ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
|
|
|
|
|
|
2026-01-18 16:21:33 -05:00
|
|
|
RUN install-php-extensions bcmath gd intl zip pcntl pdo_mysql pdo_pgsql bz2
|
2025-02-15 23:32:15 +01:00
|
|
|
|
2025-04-13 02:30:09 +02:00
|
|
|
RUN rm /usr/local/bin/install-php-extensions
|