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

@ -50,7 +50,8 @@ task buildImage(type: Exec) {
dependsOn installDist
inputs.files 'src/org/jdrupes/vmoperator/manager/Containerfile'
commandLine 'podman', 'build', '-t', "${project.name}:${project.version}",\
commandLine 'podman', 'build', '--pull',
'-t', "${project.name}:${project.version}",\
'-f', 'src/org/jdrupes/vmoperator/manager/Containerfile', '.'
}