drone-docker-readme-push/Containerfile
Dominik Meyer bc8bfc02b9
All checks were successful
continuous-integration/drone Build is passing
chore: initial commit
2024-08-14 10:04:15 +02:00

7 lines
162 B
Docker

FROM alpine:latest
RUN apk update && apk add --no-cache bash curl jq tini
ADD plugin.sh /
RUN chmod a+x /plugin.sh
ENTRYPOINT ["/sbin/tini", "--", "/plugin.sh"]