From 31c7551947249a6f41f45f58c296fa2e29dbd6fd Mon Sep 17 00:00:00 2001 From: Bjorn Neergaard Date: Fri, 13 Jan 2023 09:44:26 -0700 Subject: [PATCH] pause: remove obsolete Windows buildx workaround The issue this workaround set out to address has been resolved in buildx for some time; there is no longer a need to preserve it. Signed-off-by: Bjorn Neergaard --- build/pause/Dockerfile_windows | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build/pause/Dockerfile_windows b/build/pause/Dockerfile_windows index 81b6ddd58b6..5c1925e00f8 100644 --- a/build/pause/Dockerfile_windows +++ b/build/pause/Dockerfile_windows @@ -17,9 +17,4 @@ FROM ${BASE} ARG ARCH ADD bin/pause-windows-${ARCH}.exe /pause.exe ADD bin/wincat-windows-amd64 /Windows/System32/wincat.exe - -# NOTE(claudiub): docker buildx sets the PATH env variable to a Linux-like PATH, -# which is not desirable. See: https://github.com/moby/buildkit/issues/1560 -# TODO(claudiub): remove this once the issue has been resolved. -ENV PATH="C:\Windows\system32;C:\Windows;" ENTRYPOINT ["/pause.exe"]