2019-02-09 14:17:45 +01:00
|
|
|
FROM debian:9.5-slim
|
|
|
|
|
|
|
|
|
|
|
|
# Update
|
|
|
|
RUN apt-get update
|
|
|
|
|
|
|
|
|
|
|
|
# Install packages
|
|
|
|
RUN apt-get -yq install rsync openssh-client
|
|
|
|
|
|
|
|
|
|
|
|
# Label
|
|
|
|
LABEL "com.github.actions.name"="rsync deployments"
|
|
|
|
LABEL "com.github.actions.description"="For deploying code to a webserver via rsync over ssh"
|
|
|
|
LABEL "com.github.actions.icon"="truck"
|
|
|
|
LABEL "com.github.actions.color"="yellow"
|
|
|
|
|
2019-05-13 15:37:48 +02:00
|
|
|
LABEL "repository"="http://github.com/contention/rsync-deployments"
|
|
|
|
LABEL "homepage"="https://github.com/contention/rsync-deployments"
|
2019-02-09 14:17:45 +01:00
|
|
|
LABEL "maintainer"="Contention <hello@contention.agency>"
|
|
|
|
|
|
|
|
|
|
|
|
# Copy entrypoint
|
|
|
|
ADD entrypoint.sh /entrypoint.sh
|
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
|