Skip to content

Commit

Permalink
fix fails (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
lassemand authored Sep 30, 2024
1 parent 124a93e commit 6558b28
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-notification-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions notification-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion notification-server/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion notification-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Concordium AG [email protected]"]
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

Expand Down
4 changes: 2 additions & 2 deletions notification-server/scripts/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 6558b28

Please sign in to comment.