mirror of
https://github.com/easingthemes/ssh-deploy.git
synced 2024-11-19 08:08:05 +08:00
Initial code commit
This commit is contained in:
27
Dockerfile
Normal file
27
Dockerfile
Normal file
@@ -0,0 +1,27 @@
|
||||
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"
|
||||
|
||||
LABEL "repository"="http://github.com/contention/action-rsync-deploy"
|
||||
LABEL "homepage"="https://github.com/contention/action-rsync-deploy"
|
||||
LABEL "maintainer"="Contention <hello@contention.agency>"
|
||||
|
||||
|
||||
# Copy entrypoint
|
||||
ADD entrypoint.sh /entrypoint.sh
|
||||
RUN chmod +x /entrypoint.sh
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
|
Reference in New Issue
Block a user