syncthing-monitor/integration-test/Dockerfile
2021-01-31 13:54:58 +02:00

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"]