Fix build workdir

This commit is contained in:
durch
2025-07-07 15:25:46 +02:00
parent ba27d1cdcd
commit 030229e4b4
2 changed files with 5 additions and 2 deletions
@@ -17,7 +17,10 @@ readme.workspace = true
anyhow = { workspace = true }
clap = { workspace = true, features = ["derive", "env"] }
futures = { workspace = true }
nym-bin-common = { path = "../../common/bin-common", features = ["models"] }
# nym-bin-common = { path = "../../common/bin-common", features = ["models"] }
nym-bin-common = { git = "https://github.com/nymtech/nym.git", branch = "release/2025.11-cheddar", features = [
"models",
] }
nym-node-status-client = { path = "../nym-node-status-client" }
nym-crypto = { git = "https://github.com/nymtech/nym.git", branch = "release/2025.11-cheddar", features = [
"asymmetric",
@@ -2,7 +2,7 @@
FROM harbor.nymte.ch/dockerhub/rust:latest AS builder
COPY ./ /usr/src/nym
WORKDIR /usr/src/nym/nym-node-status-api
WORKDIR /usr/src/nym/nym-node-status-api/nym-node-status-api/
RUN cargo build --release