diff --git a/.github/workflows/release-notification-server.yml b/.github/workflows/release-notification-server.yml index c721ee0f..2345c9f9 100644 --- a/.github/workflows/release-notification-server.yml +++ b/.github/workflows/release-notification-server.yml @@ -10,7 +10,7 @@ on: env: REGISTRY: docker.io IMAGE_NAME: notification-server - RUST_VERSION: rust:1.76-buster # Define the Rust version here + RUST_VERSION: rust:1.76-bookworm # Define the Rust version here jobs: publish-docker-image: diff --git a/notification-server/CHANGELOG.md b/notification-server/CHANGELOG.md index 36998761..87a533a2 100644 --- a/notification-server/CHANGELOG.md +++ b/notification-server/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.3.7 +- Change type of image to be bookworm instead + ## 0.3.6 - Add a new endpoint to remove all accounts belonging to a device token diff --git a/notification-server/Cargo.lock b/notification-server/Cargo.lock index 5f74ea61..39e61e54 100644 --- a/notification-server/Cargo.lock +++ b/notification-server/Cargo.lock @@ -2101,7 +2101,7 @@ dependencies = [ [[package]] name = "notification-server" -version = "0.3.6" +version = "0.3.7" dependencies = [ "anyhow", "async-trait", diff --git a/notification-server/Cargo.toml b/notification-server/Cargo.toml index 2858ef3f..b1645ad7 100644 --- a/notification-server/Cargo.toml +++ b/notification-server/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Concordium AG developers@concordium.com"] edition = "2021" name = "notification-server" -version = "0.3.6" +version = "0.3.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/notification-server/scripts/Dockerfile b/notification-server/scripts/Dockerfile index 62bba270..65b25bc2 100644 --- a/notification-server/scripts/Dockerfile +++ b/notification-server/scripts/Dockerfile @@ -1,5 +1,5 @@ -ARG build_image=rust:1.76-buster -ARG base_image=debian:buster-slim +ARG build_image=rust:1.76-bookworm +ARG base_image=debian:bookworm-slim FROM ${build_image} AS build WORKDIR /usr/app/notification-server