From 8da6f6555a21621f76a1dae5c17e77bd9335635e Mon Sep 17 00:00:00 2001 From: Greg Heartsfield Date: Thu, 18 Aug 2022 17:52:16 -0700 Subject: [PATCH] build: bump version to 0.6.2 --- Cargo.lock | 2 +- Cargo.toml | 2 +- Dockerfile | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cb07e7b..4731094 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -762,7 +762,7 @@ checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" [[package]] name = "nostr-rs-relay" -version = "0.6.1" +version = "0.6.2" dependencies = [ "bitcoin_hashes", "config", diff --git a/Cargo.toml b/Cargo.toml index 09baf62..29c3a13 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nostr-rs-relay" -version = "0.6.1" +version = "0.6.2" edition = "2021" [dependencies] diff --git a/Dockerfile b/Dockerfile index 9bbf592..a0eaa5e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/library/rust:1.62.0@sha256:8220e4fbb22a07b78e6472cdf8f5fb8913a04974c26b130177b73a8a64334541 as builder +FROM docker.io/library/rust:1.63.0@sha256:d7e3f69edcdcd03b145d8d9361765b816656755e49c1c1fe28224a4505f91b0a as builder RUN USER=root cargo new --bin nostr-rs-relay WORKDIR ./nostr-rs-relay @@ -12,7 +12,7 @@ COPY ./src ./src RUN rm ./target/release/deps/nostr*relay* RUN cargo build --release -FROM docker.io/library/debian:bullseye-20220622-slim@sha256:89e9d812b34f393bddc3ff289f0036a3d9efc7e2f7289ec902c6427b69f39649 +FROM docker.io/library/debian:bullseye-20220801-slim@sha256:139a42fa3bde3e5bad6ae912aaaf2103565558a7a73afe6ce6ceed6e46a6e519 ARG APP=/usr/src/app ARG APP_DATA=/usr/src/app/db RUN apt-get update \