From 9e5730c90c334d25612383f3adc1c606a30ba51b Mon Sep 17 00:00:00 2001 From: Quentin Duchemin <quentinduchemin@tuta.io> Date: Wed, 23 Sep 2020 19:27:06 +0200 Subject: [PATCH] [MapCareTech] Fix pip version requirement for umap --- caretech/map/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caretech/map/Dockerfile b/caretech/map/Dockerfile index 3134df8b..89f25051 100644 --- a/caretech/map/Dockerfile +++ b/caretech/map/Dockerfile @@ -40,7 +40,7 @@ WORKDIR /srv/umap COPY requirements-docker.txt . # Get uMap -RUN pip install umap-project=${UMAP_VERSION} +RUN pip install umap-project==${UMAP_VERSION} # Install Docker dependencies RUN pip install -r requirements-docker.txt -- GitLab