mirror of
https://gitea.com/actions/appleboy-ssh-action.git
synced 2024-11-22 18:19:36 +01:00
17 lines
525 B
Text
17 lines
525 B
Text
|
FROM appleboy/drone-ssh
|
||
|
|
||
|
# Github labels
|
||
|
LABEL "com.github.actions.name"="SSH Commands"
|
||
|
LABEL "com.github.actions.description"="Executing remote ssh commands"
|
||
|
LABEL "com.github.actions.icon"="terminal"
|
||
|
LABEL "com.github.actions.color"="gray-dark"
|
||
|
|
||
|
LABEL "repository"="https://github.com/appleboy/ssh-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"]
|