Skip to content
This repository has been archived by the owner on Jan 11, 2025. It is now read-only.

Latest commit

 

History

History

laravel

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

aniftyco/Laravel

Lightweight Alpine Linux container with Caddy, PHP & Node for Laravel

Usage:

FROM aniftyco/laravel

WORKDIR /app

COPY . .

RUN composer install --prefer-dist --no-progress --no-interaction --no-dev

RUN npm ci && npm run build

Build it

docker build -t my-app .

Run it

docker run --rm -it my-app