03c62242ee
Allow Docker images to be overwritten, which is required to update dependencies in the base image when the upstream vendor resolves security issues.
17 lines
340 B
Bash
Executable File
17 lines
340 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
# ci/lib.sh sets VERSION and provides download_artifact here
|
|
source ./ci/lib.sh
|
|
|
|
# Download the release-packages artifact
|
|
download_artifact release-packages ./release-packages
|
|
|
|
docker buildx bake -f ci/release-image/docker-bake.hcl --push
|
|
}
|
|
|
|
main "$@"
|