2022-07-23 17:21:00 +02:00

10 lines
197 B
Docker

FROM bash:latest
# alpine with bash instead of sh
RUN apk add lsyncd cifs-utils
RUN mkdir -p /sync/remote_files
COPY entrypoint.sh /sync/entrypoint.sh
ENTRYPOINT ["bash", "/sync/entrypoint.sh"]