From 534126931c74f15f42dcf89d9b504431377f9447 Mon Sep 17 00:00:00 2001 From: Rusty Bower Date: Wed, 5 Apr 2023 09:17:23 -0500 Subject: [PATCH] dockerfiles: ensuring bash scripts are executable --- amd64.dockerfile | 3 +++ arm64v8.dockerfile | 3 +++ 2 files changed, 6 insertions(+) diff --git a/amd64.dockerfile b/amd64.dockerfile index 1579a1b..f3b7f22 100644 --- a/amd64.dockerfile +++ b/amd64.dockerfile @@ -62,6 +62,9 @@ WORKDIR /config # copy local files COPY root/ / +# ensure scripts are executable +RUN chmod +x /scripts/*.bash + # ports and volumes EXPOSE 8989 VOLUME /config diff --git a/arm64v8.dockerfile b/arm64v8.dockerfile index d079dd9..d67de30 100644 --- a/arm64v8.dockerfile +++ b/arm64v8.dockerfile @@ -70,6 +70,9 @@ WORKDIR /config # copy local files COPY root/ / +# ensure scripts are executable +RUN chmod +x /scripts/*.bash + # ports and volumes EXPOSE 8989 VOLUME /config