actions-rsync-deployment/Dockerfile

11 lines
163 B
Text
Raw Permalink Normal View History

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