Files
docker-remote-deployment-ac…/Dockerfile

14 lines
432 B
Docker
Raw Normal View History

2024-03-05 17:12:08 +08:00
FROM alpinelinux/docker-compose
2021-12-25 23:28:35 +07:00
LABEL 'name'='Docker Deployment Action'
LABEL 'com.github.actions.name'='Docker Deployment'
LABEL 'com.github.actions.description'='supports docker-compose and Docker Swarm deployments'
LABEL 'com.github.actions.icon'='send'
LABEL 'com.github.actions.color'='green'
2024-03-07 16:29:14 +08:00
RUN apk --no-cache add openssh-client socat
2021-12-25 23:28:35 +07:00
COPY docker-entrypoint.sh /docker-entrypoint.sh
ENTRYPOINT ["/docker-entrypoint.sh"]