This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM composer:latest AS composer | |
FROM node:lts-slim AS node | |
FROM php:8-apache | |
# multi stage building composer | |
COPY --from=composer /usr/bin/composer /usr/bin/composer | |
# multi stage building node | |
COPY --from=node /opt/ /opt/ | |
COPY --from=node /usr/local/lib/ /usr/local/lib/ |