FROM php:8.2-ftp as base RUN docker-php-ext-install pdo pdo_mysql COPY . /app WORKDIR /var/www/html/ EXPOSE 80 FROM nginx COPY ./nginx/nginx.conf /etc/nginx/conf.d/default.conf COPY --from=base /app/build /usr/share/nginx/html