| 12345678910111213141516171819202122232425262728 | # Use osixia/light-baseimage# https://github.com/osixia/docker-light-baseimageFROM osixia/light-baseimage:alpine-0.1.9# Install multiple process stack, nginx and php7.0-fpm and clean apt-get files# https://github.com/osixia/docker-light-baseimage/blob/stable/image/tool/add-multiple-process-stackRUN apk update \    && /container/tool/add-multiple-process-stack \    && apk add \    nginx \    php7-fpm \    && rm -rf /var/cache/apk/*# Add service directory to /container/serviceADD service /container/service# Use baseimage install-service script# https://github.com/osixia/docker-light-baseimage/blob/stable/image/tool/install-serviceRUN /container/tool/install-service# Add default env directoryADD environment /container/environment/99-default# Set /var/lib/nginx/html/ in a data volumeVOLUME /var/lib/nginx/html/# Expose default http and https portsEXPOSE 80 443
 |