11 lines
172 B
Docker
11 lines
172 B
Docker
|
FROM alpine:3.16
|
||
|
|
||
|
COPY entrypoint.sh /entrypoint
|
||
|
|
||
|
RUN chmod +x /entrypoint && \
|
||
|
apk add --no-cache \
|
||
|
openssh-client \
|
||
|
rsync
|
||
|
|
||
|
ENTRYPOINT ["/entrypoint"]
|