chore: readd justfile rule for images
This commit is contained in:
parent
e09a1f4f04
commit
b5a64a362b
2 changed files with 7 additions and 1 deletions
File diff suppressed because one or more lines are too long
6
Justfile
Normal file
6
Justfile
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
image OS ARCH:
|
||||
if echo "{{OS}}" | grep -qi "redhat"; then \
|
||||
docker buildx build --progress plain --build-arg ARCH={{ARCH}} --build-arg GITHUB_PAT="$GITHUB_PAT" --build-arg RED_HAT_DEV_PW="$RED_HAT_DEV_PW" --platform linux/{{ARCH}} -f docker/Containerfile-{{OS}} -t devxygmbh/{{ARCH}}-binaries-r-{{OS}}:latest --push .; \
|
||||
else \
|
||||
docker buildx build --progress plain --build-arg GITHUB_PAT="$GITHUB_PAT" --build-arg ARCH={{ARCH}} -f docker/Containerfile-{{OS}} --platform linux/{{ARCH}} -t devxygmbh/{{ARCH}}-binaries-r-{{OS}}:latest --push .; \
|
||||
fi
|
||||
Loading…
Reference in a new issue