From e82da57136acfcce9bf93d2a13e80d9ca61034dd Mon Sep 17 00:00:00 2001 From: 0xcathiefish <72328723+0xcathiefish@users.noreply.github.com> Date: Wed, 3 Jun 2026 17:12:22 +0000 Subject: [PATCH] fix: copy renamed tradesync binary in Dockerfile The project was renamed from nosync to tradesync, but the runtime stage still copied/ran /app/nosync, which no longer exists in target/release, breaking the image build. Point COPY and CMD at the tradesync binary. Co-Authored-By: Claude Opus 4.8 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d774301..c14fb23 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,6 +24,6 @@ RUN apt-get update && apt-get install -y ca-certificates openssl && rm -rf /var/ WORKDIR /app # Copy the built binary -COPY --from=builder /app/target/release/nosync /app/nosync +COPY --from=builder /app/target/release/tradesync /app/tradesync -CMD ["/app/nosync"] +CMD ["/app/tradesync"]