fedi-feed-router/docker/build/Dockerfile.base
myrmidex 86b1fe7263
All checks were successful
Build and Push Docker Image / build (push) Successful in 5m10s
40 - Add base image for faster CI build
2026-03-07 00:27:16 +01:00

24 lines
No EOL
455 B
Text

# Base image with FrankenPHP, PHP extensions, Node, and Composer
FROM dunglas/frankenphp:latest-php8.3-alpine
# Install system dependencies
RUN apk add --no-cache \
nodejs \
npm \
git \
mysql-client \
curl
# Install PHP extensions
RUN install-php-extensions \
pdo_mysql \
opcache \
zip \
gd \
intl \
bcmath \
redis \
pcntl
# Install Composer
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer