summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-12-03 17:31:23 +0100
committerLinnea Gräf <nea@nea.moe>2024-12-03 17:31:23 +0100
commit805d90066717a220bbf7e55ecc7e4003fdca2350 (patch)
tree30113614a430788d8ef3c092a19c2ab5cf1aeeb0
parent99c9026d7e3409170f1d4c23552cd6ffa71a4544 (diff)
downloadforgebot-805d90066717a220bbf7e55ecc7e4003fdca2350.tar.gz
forgebot-805d90066717a220bbf7e55ecc7e4003fdca2350.tar.bz2
forgebot-805d90066717a220bbf7e55ecc7e4003fdca2350.zip
Fix windows executable bits
-rw-r--r--Dockerfile2
1 files changed, 2 insertions, 0 deletions
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"]