Make sure to get latest base image versions.
Some checks failed
Java CI with Gradle / build (push) Has been cancelled

This commit is contained in:
Michael Lipp 2024-02-20 21:51:48 +01:00
parent ee96f869da
commit eccc35d0bf
2 changed files with 6 additions and 3 deletions

View file

@ -35,7 +35,8 @@ task buildArchImage(type: Exec) {
dependsOn installDist
inputs.files 'src/org/jdrupes/vmoperator/runner/qemu/Containerfile.arch'
commandLine 'podman', 'build', '-t', "${project.name}-arch:${project.version}",\
commandLine 'podman', 'build', '--pull',
'-t', "${project.name}-arch:${project.version}",\
'-f', 'src/org/jdrupes/vmoperator/runner/qemu/Containerfile.arch', '.'
}
@ -87,7 +88,8 @@ task buildAlpineImage(type: Exec) {
dependsOn installDist
inputs.files 'src/org/jdrupes/vmoperator/runner/qemu/Containerfile.alpine'
commandLine 'podman', 'build', '-t', "${project.name}-alpine:${project.version}",\
commandLine 'podman', 'build', '--pull',
'-t', "${project.name}-alpine:${project.version}",\
'-f', 'src/org/jdrupes/vmoperator/runner/qemu/Containerfile.alpine', '.'
}