From 805d90066717a220bbf7e55ecc7e4003fdca2350 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Tue, 3 Dec 2024 17:31:23 +0100 Subject: Fix windows executable bits --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 66872aa..ebb7f3e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,8 @@ FROM alpine RUN apk add --no-cache websocat bash jq grep curl git COPY ./ /app/forgebot/ +# Some windows systems delete the executable bit, this fixes it inside of the docker container +RUN chmod +x forgebot_proper.sh WORKDIR "/app/forgebot" ENTRYPOINT ["/app/forgebot/forgebot_proper.sh"] -- cgit