mirror of
https://github.com/Burnett01/rsync-deployments.git
synced 2024-11-25 08:53:46 +01:00
9 lines
166 B
Docker
9 lines
166 B
Docker
FROM alpine:latest
|
|
|
|
# Update
|
|
RUN apk --update add rsync
|
|
|
|
# Copy entrypoint
|
|
ADD entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|