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 <noreply@anthropic.com>
This commit is contained in:
0xcathiefish
2026-06-03 17:12:22 +00:00
parent be89765d80
commit e82da57136
+2 -2
View File
@@ -24,6 +24,6 @@ RUN apt-get update && apt-get install -y ca-certificates openssl && rm -rf /var/
WORKDIR /app WORKDIR /app
# Copy the built binary # 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"]