drone-docker-readme-push/Containerfile

7 lines
162 B
Plaintext
Raw Permalink Normal View History

2024-08-14 10:04:15 +02:00
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"]