summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"]