actions-rsync-deployment/Dockerfile

11 lines
163 B
Text
Raw Normal View History

2024-12-12 01:16:30 +00:00
FROM alpine:latest
RUN apk add --no-cache \
openssh \
rsync
COPY entrypoint.sh /entrypoint.sh
2024-12-12 01:25:31 +00:00
RUN chmod +x /entrypoint.sh
2024-12-12 01:16:30 +00:00
ENTRYPOINT ["/entrypoint.sh"]