Laravel Dockerfile with supervisord
Just ref for future self,content credit goes to https://medium.com/@hmquan08011996/dockerfile-for-php-laravel-36b92bb62795
Dockerfile:
FROM php:8.2-fpm
ARG user
ARG uid
# Install system dependencies
RUN apt-get update && apt-get install -y \
gi...
howmun.dev1 min read