build: bump version to 0.6.2

This commit is contained in:
Greg Heartsfield 2022-08-18 17:52:16 -07:00
parent 5bcc63bd56
commit 8da6f6555a
No known key found for this signature in database
GPG Key ID: C7F4AA6B95F11E3A
3 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@ -762,7 +762,7 @@ checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21"
[[package]]
name = "nostr-rs-relay"
version = "0.6.1"
version = "0.6.2"
dependencies = [
"bitcoin_hashes",
"config",

View File

@ -1,6 +1,6 @@
[package]
name = "nostr-rs-relay"
version = "0.6.1"
version = "0.6.2"
edition = "2021"
[dependencies]

View File

@ -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 \