From bf38e4dbd9e5ca2f002f901fad386d97c80b42ce Mon Sep 17 00:00:00 2001 From: wmkuipers Date: Tue, 1 Oct 2024 18:12:19 +0200 Subject: [PATCH] fix(cwd): Restored backwards compatibility of Current Workdir (#6731) Signed-off-by: Willem Kuipers --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index f75519b4b..7c3b99aeb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,5 +18,6 @@ FROM --platform=$TARGETPLATFORM ${BASE} COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ COPY --from=build /coredns /coredns USER nonroot:nonroot +WORKDIR / EXPOSE 53 53/udp ENTRYPOINT ["/coredns"]