build(run): add ci:build

Add `ci:build` to the `run` file to build and push the PHP image to the
GitHub container registry.
This commit is contained in:
Oliver Davies 2021-12-07 02:20:32 +00:00
parent 6042f3cdec
commit d026bdb9ae

5
run
View file

@ -11,6 +11,11 @@ function task:bash {
task:exec bash "${@}" task:exec bash "${@}"
} }
function task:ci:build {
docker-compose build php
docker-compose push php
}
function task:ci:test { function task:ci:test {
task:lint:dockerfile task:lint:dockerfile
} }