diff options
author | Linnea Gräf <nea@nea.moe> | 2024-12-03 17:31:23 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-12-03 17:31:23 +0100 |
commit | 805d90066717a220bbf7e55ecc7e4003fdca2350 (patch) | |
tree | 30113614a430788d8ef3c092a19c2ab5cf1aeeb0 | |
parent | 99c9026d7e3409170f1d4c23552cd6ffa71a4544 (diff) | |
download | forgebot-805d90066717a220bbf7e55ecc7e4003fdca2350.tar.gz forgebot-805d90066717a220bbf7e55ecc7e4003fdca2350.tar.bz2 forgebot-805d90066717a220bbf7e55ecc7e4003fdca2350.zip |
Fix windows executable bits
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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"] |