From 5c6df5adc0bbad71601eb529253196bb352e0b7a Mon Sep 17 00:00:00 2001 From: mudler Date: Thu, 27 Feb 2025 19:38:21 +0100 Subject: [PATCH] Fix entrypoint --- Dockerfile.webui | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.webui b/Dockerfile.webui index 2f5eb22..23ef0f5 100644 --- a/Dockerfile.webui +++ b/Dockerfile.webui @@ -22,8 +22,8 @@ RUN go build -ldflags="$LDFLAGS" -o localagent ./ FROM scratch # Copy the webui binary from the builder stage to the final image -COPY --from=builder /work/webui /webui +COPY --from=builder /work/localagent /localagent COPY --from=builder /etc/ssl/ /etc/ssl/ # Define the command that will be run when the container is started -ENTRYPOINT ["/localagent"] \ No newline at end of file +ENTRYPOINT ["/localagent"]