feat: add makerun image (#29)
All checks were successful
Deploy / build (push) Successful in 37s

- a basic image that enables running development builds

Reviewed-on: #29
This commit is contained in:
Ben Vincent 2026-01-10 16:16:10 +11:00
parent 563df98993
commit d9ad1d6b0e
4 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,8 @@
#!/usr/bin/bash
set -e
mkdir /app
git clone --branch ${BRANCH} ${REPOSITORY} /app/repo
cd /app/repo
make run

View File

@ -0,0 +1 @@
docker

View File

@ -0,0 +1,12 @@
# almalinux/9.6/makerun
docker_source = "git.unkin.net/unkin/almalinux9-base:latest"
packages = [
"sudo"
]
scripts_final = [
"dnf clean all",
"rm -rf /var/cache/dnf"
]
docker_changes = [
"CMD /usr/bin/local/run.sh"
]

View File

@ -0,0 +1 @@
20260110