mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-16 05:07:55 +08:00
Added python-requests package to the Dockerfile so cellxgene can use URLs as a data source.
11 lines
242 B
Docker
11 lines
242 B
Docker
FROM ubuntu:bionic
|
|
|
|
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 python3-requests && \
|
|
pip3 install cellxgene
|
|
|
|
ENTRYPOINT ["cellxgene"]
|