drone-discord-webhook/Dockerfile
Evann Regnault c7d4a310c5
All checks were successful
continuous-integration/drone/push Build is passing
Fixed docker context
2024-05-04 17:03:33 +02:00

8 lines
No EOL
135 B
Docker

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