From 060c330851ee68e03d27ac9ab6d1fa423ee0868c Mon Sep 17 00:00:00 2001 From: Ivan Topolcic Date: Mon, 1 Aug 2022 16:41:59 -0400 Subject: [PATCH] Make datadog_wrapper executabe (#76) * Changing file permission * Explicitly set mode to 0755 --- scripts/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Dockerfile b/scripts/Dockerfile index 365d53b1..a7864ea7 100644 --- a/scripts/Dockerfile +++ b/scripts/Dockerfile @@ -1,4 +1,4 @@ FROM scratch ARG TARGETARCH COPY .layers/datadog_extension-$TARGETARCH/extensions/datadog-agent opt/extensions/datadog-agent -COPY scripts/datadog_wrapper opt/datadog_wrapper +COPY --chmod=0755 scripts/datadog_wrapper opt/datadog_wrapper