From d4680382f5aa644ff24f5c6a84972db2d3e52ce2 Mon Sep 17 00:00:00 2001 From: Mark Sinclair Date: Fri, 6 Dec 2024 21:42:29 +0000 Subject: [PATCH] Fix docker entry point and bump version --- nyx-chain-watcher/Cargo.toml | 2 +- nyx-chain-watcher/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nyx-chain-watcher/Cargo.toml b/nyx-chain-watcher/Cargo.toml index 1f9e87d4a2..6104a7877f 100644 --- a/nyx-chain-watcher/Cargo.toml +++ b/nyx-chain-watcher/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nyx-chain-watcher" -version = "0.1.0" +version = "0.1.1" authors.workspace = true repository.workspace = true homepage.workspace = true diff --git a/nyx-chain-watcher/Dockerfile b/nyx-chain-watcher/Dockerfile index 6599e8a66e..e4419d4664 100644 --- a/nyx-chain-watcher/Dockerfile +++ b/nyx-chain-watcher/Dockerfile @@ -28,5 +28,5 @@ RUN apt update && apt install -yy curl ca-certificates WORKDIR /nym COPY --from=builder /usr/src/nym/target/release/nyx-chain-watcher ./ -ENTRYPOINT [ "/nym/nyx-chain-watcher" ] +ENTRYPOINT [ "/nym/nyx-chain-watcher", "run" ]