Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Latest commit

 

History

History
35 lines (25 loc) · 784 Bytes

BUILDING.md

File metadata and controls

35 lines (25 loc) · 784 Bytes

Building

Components

  • ./app.php The actual application (front controller).
  • ./src Contains the PHP sources.
  • ./src/build.php The build/installer.php maker.
  • ./html Contains HTML related resources (images, js, css).
  • ./template Contains the templates.

Build

php src/build.php
[OK] build/installer.php

Docker build

  • Tip: Tag ghcr.io/chevereto/httpd-php-installer:4.0 to override the ghcr package with local
docker build -t ghcr.io/chevereto/httpd-php-installer:4.0 . \
    -f httpd-php-installer.Dockerfile
  • For custom tag: Replace tag with your own.
docker build -t chevereto/httpd-php:tag . \
    -f httpd-php-installer.Dockerfile