From e3bd583283d1a92eb345d1b26c23fc3c39899ddb Mon Sep 17 00:00:00 2001 From: Rob Young Date: Thu, 7 Mar 2019 09:47:33 +0000 Subject: [PATCH] Remove Dockerfile PATH munging Just install everything in the system environment as this image is just for running development tasks anyway. --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d6effd5..8f7b475 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,6 @@ WORKDIR /genyrator COPY . ./ RUN pip install pipenv && \ - pipenv install --system && \ - pipenv sync --dev + pipenv install --dev --system CMD ["make", "test"]