run 213 B

12345678
  1. #!/usr/bin/with-contenv sh
  2. # From https://github.com/smebberson/docker-alpine/tree/master/alpine-apache
  3. # avoid 'already pid is running' error
  4. rm -f /run/apache2/httpd.pid
  5. exec /usr/sbin/apachectl -DFOREGROUND;