From 90d0ea151e99db6e2a7b8c1b796a1e178885abd3 Mon Sep 17 00:00:00 2001 From: John Children <32305209+johnchildren@users.noreply.github.com> Date: Fri, 17 Jul 2020 01:06:47 +0100 Subject: [PATCH] Include watchdog for cache in Docker image (#323) Include watchdog as a dependency in the docker image pip requirements. This is very useful in situations where your packages are mounted over the network which may be a typical use case for the image. As passlib is included as a default dependency this seems like a natural addition. --- docker-requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker-requirements.txt b/docker-requirements.txt index 1084dd9..2bdb0e4 100644 --- a/docker-requirements.txt +++ b/docker-requirements.txt @@ -1,2 +1,3 @@ passlib==1.7.2 -bcrypt==3.1.7 \ No newline at end of file +bcrypt==3.1.7 +watchdog==0.10.3