syncthing-monitor/integration-test/Dockerfile

12 lines
210 B
Docker

FROM ubuntu:trusty
RUN apt-get update && apt-get install -yq curl && apt-get clean
WORKDIR /app
ADD test_file_sync.sh /app/test_file_sync.sh
VOLUME [ "/data1", "/data2" ]
CMD ["bash", "test_file_sync.sh"]