10 lines
223 B
Docker
10 lines
223 B
Docker
FROM bash:latest
|
|
# alpine with bash instead of sh
|
|
ENV TZ=Europe/Berlin
|
|
RUN apk add lsyncd cifs-utils rsync
|
|
RUN mkdir -p /sync/remote_files
|
|
COPY entrypoint.sh /sync/entrypoint.sh
|
|
|
|
|
|
ENTRYPOINT ["bash", "/sync/entrypoint.sh"]
|