dockerfiles/rsync/Dockerfile

11 lines
172 B
Docker
Raw Permalink Normal View History

2022-08-22 12:19:18 +02:00
FROM alpine:3.16
COPY entrypoint.sh /entrypoint
RUN chmod +x /entrypoint && \
apk add --no-cache \
openssh-client \
rsync
ENTRYPOINT ["/entrypoint"]