From 4a48352bed2a079b3444591b81e476fa598fce64 Mon Sep 17 00:00:00 2001 From: James Tufarelli <8152401+Minituff@users.noreply.github.com> Date: Wed, 18 Oct 2023 15:16:42 -0700 Subject: [PATCH] Update Dockerfile (#46) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a547e96d..82f37feb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN apk add bash rsync tzdata dos2unix jq COPY pkg app # Make the entire /app folder executable -RUN chmod +x /app +RUN chmod -R +x /app # Make the all files in the /app folder Unix format RUN find /app -type f -print0 | xargs -0 dos2unix