action-scp/Dockerfile

17 lines
539 B
Text
Raw Normal View History

2019-05-11 13:32:25 +00:00
FROM appleboy/drone-scp:1.5.1-linux-amd64
2019-05-11 09:01:31 +00:00
# Github labels
2019-05-11 14:28:54 +00:00
LABEL "com.github.actions.name"="SCP Files"
2019-05-11 09:01:31 +00:00
LABEL "com.github.actions.description"="Copy files and artifacts via SSH"
LABEL "com.github.actions.icon"="copy"
LABEL "com.github.actions.color"="gray-dark"
LABEL "repository"="https://github.com/appleboy/scp-action"
LABEL "homepage"="https://github.com/appleboy"
LABEL "maintainer"="Bo-Yi Wu <appleboy.tw@gmail.com>"
LABEL "version"="0.0.1"
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]