From 15cb4e0856e12e13f22b4807a316234b59f7ebaa Mon Sep 17 00:00:00 2001 From: Jordan Jones Date: Thu, 23 May 2024 14:09:53 -0700 Subject: [PATCH] chore: fix kubernetes not being able to use nobody as an actual user --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 20cc1e0..20384b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,5 +22,5 @@ COPY --from=builder --chown=root:root external-dns-unifi-webhook /bin/ EXPOSE 8888 # Drop to unprivileged user to run -USER nobody +USER 8675:8675 CMD ["/bin/external-dns-unifi-webhook"]