Skip to content

Instantly share code, notes, and snippets.

View KimCalvin's full-sized avatar

Kim Schiefke KimCalvin

View GitHub Profile
@KimCalvin
KimCalvin / Dockerfile
Created October 27, 2025 15:44
Minimal docker compose setup
FROM dunglas/frankenphp:1-php8.4
RUN install-php-extensions zip
COPY --from=composer/composer /usr/bin/composer /usr/bin/composer
COPY . /app
RUN composer install --no-interaction --optimize-autoloader