feat: add makerun image #29

Merged
unkinben merged 1 commits from benvin/makerun into master 2026-01-10 16:16:13 +11:00
4 changed files with 22 additions and 0 deletions
Showing only changes of commit d71601eba4 - Show all commits

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