Files
docker-remote-deployment-ac…/Dockerfile
smf 3ec54a128a m5x2 (#2)
Reviewed-on: #2
2024-03-08 18:15:54 +08:00

16 lines
515 B
Docker

FROM alpinelinux/docker-compose
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'
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
RUN apk --no-cache add openssh-client socat
COPY docker-entrypoint.sh /docker-entrypoint.sh
ENTRYPOINT ["/docker-entrypoint.sh"]