# Composer container
#
# We use the official PHP image and then add the composer binary to it to
# ensure we use a plain PHP image and not something specialized for Composer
FROM php:8.3 as composer
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
ENTRYPOINT composer
