stack-ssh-deploy/Dockerfile

10 lines
143 B
Docker
Raw Normal View History

2020-09-23 06:32:50 +00:00
FROM docker:dind
RUN apk add --no-cache openssh-client=8.3_p1-r0
COPY plugin.sh /plugin
WORKDIR /drone/src
2020-09-23 06:35:16 +00:00
CMD ["sh", "/plugin/plugin.sh"]