2019-02-09 16:17:45 +03:00
|
|
|
FROM debian:9.5-slim
|
|
|
|
|
|
|
|
# Label
|
2019-09-26 01:25:28 +03:00
|
|
|
LABEL "com.github.actions.name"="ssh deploy"
|
2019-09-26 00:24:25 +03:00
|
|
|
LABEL "com.github.actions.description"="For deploying code over ssh"
|
2019-02-09 16:17:45 +03:00
|
|
|
LABEL "com.github.actions.icon"="truck"
|
2019-09-26 00:56:12 +03:00
|
|
|
LABEL "com.github.actions.color"="green"
|
2019-02-09 16:17:45 +03:00
|
|
|
|
2019-09-26 00:56:12 +03:00
|
|
|
LABEL "repository"="http://github.com/easingthemes/ssh-deploy"
|
|
|
|
LABEL "homepage"="https://github.com/easingthemes/ssh-deploy"
|
2019-09-26 00:24:25 +03:00
|
|
|
LABEL "maintainer"="Dragan Filipovic <info@frontenddot.com>"
|
2019-02-09 16:17:45 +03:00
|
|
|
|
|
|
|
# Copy entrypoint
|
|
|
|
ADD entrypoint.sh /entrypoint.sh
|
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|