syncthing-monitor/integration-test/Dockerfile

12 lines
210 B
Docker
Raw Permalink Normal View History

FROM ubuntu:trusty
RUN apt-get update && apt-get install -yq curl && apt-get clean
WORKDIR /app
2021-01-31 08:44:14 +00:00
ADD test_file_sync.sh /app/test_file_sync.sh
2021-01-31 08:44:14 +00:00
VOLUME [ "/data1", "/data2" ]
CMD ["bash", "test_file_sync.sh"]