frankenphp

This commit is contained in:
2026-01-15 04:32:49 +07:00
parent e4e1aa04ac
commit a21a62c483
9 changed files with 111 additions and 14 deletions

View File

@@ -1,7 +1,9 @@
FROM php:8.5-cli-alpine
RUN apk add --no-cache libzip-dev zip \
&& docker-php-ext-install zip
FROM dunglas/frankenphp:php8.5-alpine
RUN install-php-extensions zip
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
WORKDIR /var/www
COPY . .
CMD ["php", "-S", "0.0.0.0:8001", "-t", "public"]
COPY . .