mirror of
https://github.com/Burnett01/rsync-deployments.git
synced 2026-09-22 14:55:24 +08:00
11 lines
198 B
Docker
11 lines
198 B
Docker
FROM alpine:latest
|
|
|
|
# Update
|
|
RUN apk --update --no-cache add rsync bash openssh-client
|
|
|
|
# Copy entrypoint
|
|
ADD entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|