mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 19:54:45 +02:00
11 lines
442 B
Docker
11 lines
442 B
Docker
# ================================
|
|
# Stage 0: Build PHP Base Image
|
|
# ================================
|
|
FROM --platform=$TARGETOS/$TARGETARCH php:8.4-fpm-alpine
|
|
|
|
ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
|
|
|
|
RUN install-php-extensions bcmath gd intl zip opcache pcntl posix pdo_mysql pdo_pgsql
|
|
|
|
RUN rm /usr/local/bin/install-php-extensions
|