diff options
-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"] |