drone-discord-webhook/docker/Dockerfile
Evann Regnault 245ec2d251
Some checks reported errors
continuous-integration/drone/push Build encountered an error
First commit
2024-05-04 16:49:10 +02:00

8 lines
No EOL
131 B
Docker

FROM alpine
RUN apk add jq curl bash
COPY . /app
WORKDIR /app
RUN chmod +x launch.sh
ENTRYPOINT [ "/bin/bash", "/app/launch.sh" ]