From b8a4981ed9f0eb17b2c5c710784bc040b446db5c Mon Sep 17 00:00:00 2001 From: Maple Date: Tue, 4 Nov 2025 22:23:24 +0100 Subject: [PATCH] fix dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index efe48ed..a84064f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,11 +19,11 @@ RUN OPENSSL_LIB_DIR=/usr/lib OPENSSL_INCLUDE_DIR=/usr/include/openssl OPENSSL_ST FROM scratch AS final -WORKDIR /app +WORKDIR / # Copy the compiled binary from the builder stage COPY --from=builder /app/target/x86_64-unknown-linux-musl/prod/account /account -COPY --from=builder /app/res / +COPY --from=builder /app/res /res # Set executable permissions # RUN chmod +x /account