summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: ebb7f3e4c112446d745024a02d5d0ddfd0126e7b (plain)
1
2
3
4
5
6
7
8
9
10
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"]