From 491e89d1021b9cb5d94730a2c1839a305605f119 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Wed, 30 Oct 2024 10:40:59 +0100 Subject: [PATCH] dockerfile: adjust binary name after merge --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index dc70dbe2..ef3b3401 100644 --- a/Dockerfile +++ b/Dockerfile @@ -68,7 +68,6 @@ RUN make build FROM ubuntu:22.04 -COPY --from=0 /browser/zig-out/bin/browsercore /bin/lightpanda -COPY --from=0 /browser/zig-out/bin/browsercore-get /bin/lightpanda-get +COPY --from=0 /browser/zig-out/bin/lightpanda /bin/lightpanda CMD ["/bin/lightpanda", "--host", "0.0.0.0", "--port", "3245"]