FROM php:8.4-alpine

WORKDIR /code
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
COPY ./ /code

RUN composer install
