Skip to content

Instantly share code, notes, and snippets.

View mi2ku39's full-sized avatar
👻

Mitsuki Kurashige mi2ku39

👻
View GitHub Profile
@mi2ku39
mi2ku39 / Dockerfile
Last active November 5, 2022 00:54
Laravel Dockerfile
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/