This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
stack-ssh-deploy/Dockerfile

12 lines
170 B
Docker
Raw Normal View History

2020-09-23 06:32:50 +00:00
FROM docker:dind
2020-09-25 10:43:49 +00:00
RUN apk add --no-cache \
2020-09-25 10:55:10 +00:00
bash=5.0.17-r0 \
2020-09-25 10:43:49 +00:00
openssh-client=8.3_p1-r0
2020-09-23 06:32:50 +00:00
2020-09-23 06:36:19 +00:00
COPY plugin.sh /plugin/plugin.sh
2020-09-23 06:32:50 +00:00
WORKDIR /drone/src
2020-09-23 06:36:19 +00:00
CMD ["/plugin/plugin.sh"]