FROM nginx:1.19 AS development

LABEL org.opencontainers.image.authors="Mike Mellor <mike.mellor@avalerehealth.com>"

# Copy nginx conf
COPY ./nginx.conf /etc/nginx/conf.d/default.conf

FROM fishawack/lab-env-laravel-8-nginx:latest AS production

# Copy source code into container
COPY . /app