From 9ad05f60b829f80c5b53b07bd66a094b7e557ff2 Mon Sep 17 00:00:00 2001 From: Tim Nebel Date: Fri, 7 Mar 2025 11:59:08 +0000 Subject: [PATCH] fix ci --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index db2e498..ba283ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ FROM rust:alpine AS final WORKDIR /app # Copy the compiled binary from the builder stage -COPY --from=builder /app/target/release/account /app/account +COPY --from=builder /app/target/prod/account /app/account # Set executable permissions RUN chmod +x /app/account