From 79821aec9801acb59fff7590dc92a060b5c09380 Mon Sep 17 00:00:00 2001 From: Nick Stenning Date: Fri, 12 Aug 2016 11:26:34 +0200 Subject: [PATCH] Set PYTHONPATH in the container environment --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index c87ae1fec52..23a32e81484 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,6 +44,7 @@ EXPOSE 5000 # Set the application environment ENV PATH /var/lib/hypothesis/bin:$PATH ENV PYTHONIOENCODING utf_8 +ENV PYTHONPATH /var/lib/hypothesis:$PYTHONPATH # Start the web server by default USER hypothesis