feat: add makerun image (#29)
All checks were successful
Deploy / build (push) Successful in 37s
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:
parent
563df98993
commit
d9ad1d6b0e
8
files/almalinux/makerun/usr/local/bin/run.sh
Normal file
8
files/almalinux/makerun/usr/local/bin/run.sh
Normal file
@ -0,0 +1,8 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
mkdir /app
|
||||
git clone --branch ${BRANCH} ${REPOSITORY} /app/repo
|
||||
cd /app/repo
|
||||
make run
|
||||
1
images/almalinux/9.6/makerun/builds
Normal file
1
images/almalinux/9.6/makerun/builds
Normal file
@ -0,0 +1 @@
|
||||
docker
|
||||
12
images/almalinux/9.6/makerun/variables.auto.pkrvars.hcl
Normal file
12
images/almalinux/9.6/makerun/variables.auto.pkrvars.hcl
Normal 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"
|
||||
]
|
||||
1
images/almalinux/9.6/makerun/version
Normal file
1
images/almalinux/9.6/makerun/version
Normal file
@ -0,0 +1 @@
|
||||
20260110
|
||||
Loading…
Reference in New Issue
Block a user