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