Make sure to get latest base image versions.
Some checks failed
Java CI with Gradle / build (push) Has been cancelled
Some checks failed
Java CI with Gradle / build (push) Has been cancelled
This commit is contained in:
parent
ee96f869da
commit
eccc35d0bf
2 changed files with 6 additions and 3 deletions
|
|
@ -50,7 +50,8 @@ task buildImage(type: Exec) {
|
||||||
dependsOn installDist
|
dependsOn installDist
|
||||||
inputs.files 'src/org/jdrupes/vmoperator/manager/Containerfile'
|
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', '.'
|
'-f', 'src/org/jdrupes/vmoperator/manager/Containerfile', '.'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,8 @@ task buildArchImage(type: Exec) {
|
||||||
dependsOn installDist
|
dependsOn installDist
|
||||||
inputs.files 'src/org/jdrupes/vmoperator/runner/qemu/Containerfile.arch'
|
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', '.'
|
'-f', 'src/org/jdrupes/vmoperator/runner/qemu/Containerfile.arch', '.'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -87,7 +88,8 @@ task buildAlpineImage(type: Exec) {
|
||||||
dependsOn installDist
|
dependsOn installDist
|
||||||
inputs.files 'src/org/jdrupes/vmoperator/runner/qemu/Containerfile.alpine'
|
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', '.'
|
'-f', 'src/org/jdrupes/vmoperator/runner/qemu/Containerfile.alpine', '.'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue