From e289b31d34c88896ea5beb909d9b26e8df9d90c7 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Mon, 11 Sep 2023 13:11:29 +0200 Subject: [PATCH] Change the binary name to trust-dns named was an alias --- alpine/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 1bbe10e..bc01f3d 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -59,8 +59,8 @@ LABEL org.label-schema.vendor="trust-dns" \ # https://github.com/mischov/meeseeks/issues/98#issuecomment-636615680 RUN apk add --no-cache --update openssl libgcc -COPY --from=build-env /workspace/target/release/named /usr/bin +COPY --from=build-env /workspace/target/release/trust-dns /usr/bin # Quickly test the binary is "working" and has no linked libs errors RUN named --version -ENTRYPOINT [ "named" ] +ENTRYPOINT [ "trust-dns" ]