FROM nginx:alpine # Copy composer.lock and composer.json COPY nginx/conf.d/vhost.conf /etc/nginx/conf.d/default.conf COPY . /var/www # Set working directory WORKDIR /var/www # Expose port 9000 and start php-fpm server EXPOSE 80