From fe38a7a49ebe3ae24152201998f800a9ef27a3c6 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 15 Jan 2023 17:15:07 +0100 Subject: [PATCH] Fix dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8b26c02..0a0223e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ FROM files AS build RUN cargo install --path . --all-features --bins FROM debian:buster AS system -COPY --from=install /usr/local/cargo/bin/patched_porobot /usr/local/bin/patched_porobot +COPY --from=build /usr/local/cargo/bin/patched_porobot /usr/local/bin/patched_porobot FROM system AS entrypoint ENTRYPOINT ["bobbot"]