From 6a95d956a9e6e6bfb6ce828540e5b42614192916 Mon Sep 17 00:00:00 2001 From: Prete Date: Tue, 5 Nov 2019 17:57:29 +0100 Subject: [PATCH] Update Dockerfile (#1019) Added python-requests package to the Dockerfile so cellxgene can use URLs as a data source. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1e92abde..c25e6cde 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ENV LC_ALL=C.UTF-8 ENV LANG=C.UTF-8 RUN apt-get update && \ - apt-get install -y build-essential libxml2-dev python3-dev python3-pip zlib1g-dev && \ + apt-get install -y build-essential libxml2-dev python3-dev python3-pip zlib1g-dev python3-requests && \ pip3 install cellxgene -ENTRYPOINT ["cellxgene"] \ No newline at end of file +ENTRYPOINT ["cellxgene"]