-
Notifications
You must be signed in to change notification settings - Fork 51
Description
Hi,
I would like to deploy the cellxgene VIP result with Heroku
and would like to know how to modify the "Dockerfile" provided by cellxgene
Here is my modified version and I'm getting this error
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 &&
apt-get install git -y
git clone https://github.com/interactivereport/cellxgene_VIP.git
COPY . .
RUN pip install -r requirements.txt
RUN conda env create -n VIP -f VIP.macOS.yml
RUN conda init bash
RUN conda activate VIP
RUN echo "Make sure flask is installed:"
RUN python -c "import flask"
COPY run.py .
RUN ./config.macOS.sh
ENTRYPOINT ["cellxgene"]
and getting below errors
E: Unable to locate package clone
E: Unable to locate package https://github.com/interactivereport
E: Couldn't find any package by glob 'https://github.com/interactivereport'
E: Couldn't find any package by regex 'https://github.com/interactivereport'
The command '/bin/sh -c apt-get update && apt-get install -y build-essential libxml2-dev python3-dev python3-pip zlib1g-dev python3-requests && apt-get install git -y git clone https://github.com/interactivereport/cellxgene_VIP.git' returned a non-zero code: 100
▸ Error: docker build exited with Error: 100
Thanks,