diff --git a/docker/DockerSettings.yaml b/docker/DockerSettings.yaml index 153218f9..c0c5f7f7 100644 --- a/docker/DockerSettings.yaml +++ b/docker/DockerSettings.yaml @@ -7,7 +7,7 @@ vault_image_digest: "sha256:a0a377b810e66a4ebf1416f732d2be06f3262bf5a5238695af88 xx_image_digest: "sha256:9c207bead753dda9430bdd15425c6518fc7a03d866103c516a2c6889188f5894" rust_version: 1.87.0 # Rust version to be used debian_version: bookworm # Debian release name to be used -alpine_version: "3.21" # Alpine version to be used +alpine_version: "3.22" # Alpine version to be used # For which platforms/architectures will we try to build images platforms: ["linux/amd64", "linux/arm64", "linux/arm/v7", "linux/arm/v6"] # Determine the build images per OS/Arch diff --git a/docker/Dockerfile.alpine b/docker/Dockerfile.alpine index 8973c74d..3be5067f 100644 --- a/docker/Dockerfile.alpine +++ b/docker/Dockerfile.alpine @@ -127,7 +127,7 @@ RUN source /env-cargo && \ # To uninstall: docker run --privileged --rm tonistiigi/binfmt --uninstall 'qemu-*' # # We need to add `--platform` here, because of a podman bug: https://github.com/containers/buildah/issues/4742 -FROM --platform=$TARGETPLATFORM docker.io/library/alpine:3.21 +FROM --platform=$TARGETPLATFORM docker.io/library/alpine:3.22 ENV ROCKET_PROFILE="release" \ ROCKET_ADDRESS=0.0.0.0 \