From a8f6e45f34bf39cd2960879c963cf6478b3311cc Mon Sep 17 00:00:00 2001 From: Nico Trummer <52698566+nictru@users.noreply.github.com> Date: Wed, 21 Feb 2024 09:47:46 +0100 Subject: [PATCH] Implement pip upgrade to Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f99b62c..c2e61d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM python:3.9 -RUN pip install cellxgene-gateway 'MarkupSafe<2.1' +RUN pip install --upgrade pip \ + && pip install cellxgene-gateway 'MarkupSafe<2.1' ENV CELLXGENE_DATA=/cellxgene-data ENV CELLXGENE_LOCATION=/usr/local/bin/cellxgene