Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 736 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 736 Bytes

Notes

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.

Usage

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

Credits

Original Dockerfile: https://gist.github.com/antonioribeiro/0a9e12eb14c6cb9c3fd2f6632b35e85e
Credits to the original author, Antonio Ribeiro, for his work.