From e3922a86124fdcadd07dcf3d2f90c73065128aef Mon Sep 17 00:00:00 2001 From: Chris Cheetham Date: Thu, 30 Jun 2022 09:17:31 -0400 Subject: [PATCH] Defer making executable until installed --- docfx/Dockerfile | 2 +- docfx/docfx | 0 2 files changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 docfx/docfx diff --git a/docfx/Dockerfile b/docfx/Dockerfile index 5cd6ae8d..1504a1d4 100644 --- a/docfx/Dockerfile +++ b/docfx/Dockerfile @@ -19,7 +19,7 @@ RUN \ wget https://github.com/dotnet/docfx/releases/download/$(cat docfx_version)/docfx.zip && \ mkdir -p /usr/local/libexec && \ unzip docfx.zip -d /usr/local/libexec/docfx && \ - cp docfx /usr/local/bin && \ + install docfx /usr/local/bin && \ rm -rf /scratch WORKDIR /work ENTRYPOINT ["docfx"] diff --git a/docfx/docfx b/docfx/docfx old mode 100755 new mode 100644