This is not an official Laravel repository, this is a fork of it.
The Dockerfile in this repository has been customized to use PHP debian based images instead of Alpine due to DNS issues experienced in AWS Lambda.
environment.Dockerfile
FROM melbach/vapor-bookworm:php83
RUN apt-get update && apt-get install -y \
default-mysql-client && \
rm -rf /var/lib/apt/lists/*
COPY . /var/task
Original Dockerfile: https://gist.github.com/antonioribeiro/0a9e12eb14c6cb9c3fd2f6632b35e85e
Credits to the original author, Antonio Ribeiro, for his work.