mirror of
https://github.com/exchanges-lab/tradesync.git
synced 2026-08-04 21:01:23 +08:00
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:
+2
-2
@@ -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"]
|
||||||
|
|||||||
Reference in New Issue
Block a user