Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 210 Bytes

README.md

File metadata and controls

17 lines (10 loc) · 210 Bytes

A Dockerfile for hosting Laravel Applications

Usage:

FROM lukehflynn/fpm-laravel:latest

ENV app_home /var/www

ADD . ${app_home}

WORKDIR ${app_home}

RUN composer install

EXPOSE 80