From 1474f999f6bb114921bbd5b45656429c75577885 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Thu, 14 Sep 2023 14:44:44 +0100 Subject: [PATCH] Fix docker build (#26) It's taking SO long to build on my laptop I suspect something is up with docker. I'm 99% sure this should fix the image build though, as the binary has moved. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cb158e2..c9e3d8c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,5 +22,5 @@ WORKDIR app USER nobody -COPY --from=builder /app/target/release/capture /usr/local/bin -ENTRYPOINT ["/usr/local/bin/capture"] +COPY --from=builder /app/target/release/capture-server /usr/local/bin +ENTRYPOINT ["/usr/local/bin/capture-server"]