From a89b6e638a9be7f1c562e9ee5599241f4723583e Mon Sep 17 00:00:00 2001 From: Devan Non Date: Thu, 5 Oct 2023 18:25:00 +0200 Subject: [PATCH] fix docker build --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bd8edff..fd6ab06 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,6 @@ RUN cargo build --release FROM centos:8 # Copy the binary from the build stage to the current directory in the new stage -COPY --from=build /app/target/release/temper/temper +COPY --from=build /app/target/release/enso-temper /enso-temper EXPOSE 80 -CMD ["./temper"] \ No newline at end of file +CMD ["./enso-temper"] \ No newline at end of file