From 63d6503a8e4ce5077b8b3a1c81dda67bc7b448d2 Mon Sep 17 00:00:00 2001 From: blooper05 Date: Tue, 19 Jun 2018 20:03:04 +0900 Subject: [PATCH] Add PIP_NO_BUILD_ISOLATION=false to Dockerfile `docker-compose build` occurs an known installation error of `pandas`. refs. https://github.com/pandas-dev/pandas/issues/20775 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8e71c90fa..8eb10a6e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ freetype-dev # clone the repo && Install pre-reqs for pyjq COPY . /opt/cloudmapper -RUN pip install pipenv && pipenv --two && pipenv install +RUN pip install pipenv && pipenv --two && PIP_NO_BUILD_ISOLATION=false pipenv install RUN chmod +x entrypoint.sh && touch config.json