actions-rsync-deployment/Dockerfile

11 lines
164 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
RUN chmod +x /entrypoints.sh
ENTRYPOINT ["/entrypoint.sh"]