Update Dockerfile (#1019)

Added python-requests package to the Dockerfile so cellxgene can use URLs as a data source.
This commit is contained in:
Prete
2019-11-05 17:57:29 +01:00
committed by Bruce Martin
parent 7599af451f
commit 6a95d956a9

View File

@@ -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"]
ENTRYPOINT ["cellxgene"]