mirror of
https://github.com/pelican-dev/panel
synced 2026-08-19 16:26:05 -04:00
13 lines
576 B
Text
13 lines
576 B
Text
# ================================
|
|
# Stage 0: Build PHP Base Image
|
|
# ================================
|
|
FROM --platform=$TARGETOS/$TARGETARCH php:8.5-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 pdo_mysql pdo_pgsql bz2
|
|
|
|
RUN rm /usr/local/bin/install-php-extensions
|
|
|
|
# Use the production php.ini shipped with the image as the baseline
|
|
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
|