Skip to content
Snippets Groups Projects
Select Git revision
  • faba6d7b3ad47d98c2f779e98e375fb5afe4821c
  • master default protected
  • csv_export
  • ndex
  • v1.1.18-rc2
  • v1.1.17
  • v1.1.16
  • v1.1.16-rc12
  • v1.1.16-rc11
  • v1.1.16-rc10
  • v1.1.16-rc9
  • v1.1.16-rc8
  • v1.1.16-rc7
  • v1.1.16-rc4
  • v1.1.16-rc3
  • v1.1.16-rc1
  • v1.1.6-rc1
  • v1.1.15
  • v1.1.15-rc7
  • v1.1.15-rc6
  • v1.1.15-rc3
  • v1.1.15-rc1
  • v1.1.14
  • v1.1.13
24 results

index.html

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile 908 B
    FROM registry.blitzhub.io/conda_miniconda3
    
    WORKDIR /usr/src/drugstone/
    
    ENV PYTHONDONTWRITEBYTECODE 1
    ENV PYTHONUNBUFFERED 1
    ENV LC_ALL=C.UTF-8
    ENV LANG=C.UTF-8
    
    RUN apt-get update
    RUN apt-get install -y supervisor nginx
    RUN apt-get install -y libgtk-3-dev
    RUN apt-get install wget
    
    COPY ./requirements.txt /usr/src/drugstone/requirements.txt
    
    RUN conda install -y conda=4.3.16
    RUN conda install -c conda-forge -y graph-tool=2.32
    
    RUN pip install pyvcf
    RUN pip install -r /usr/src/drugstone/requirements.txt
    RUN pip install gunicorn
    
    COPY ./supervisord.conf /etc/supervisor/conf.d/supervisord.conf
    #COPY scripts/docker-entrypoint.sh /usr/src/drugstone/docker-entrypoint.sh
    # COPY ./scripts/ /usr/src/drugstone/scripts/
    COPY ./python_nedrex/ /usr/src/drugstone/python_nedrex/
    RUN pip install /usr/src/drugstone/python_nedrex/
    
    COPY . /usr/src/drugstone/
    
    
    #EXPOSE 8000
    
    # ENTRYPOINT ["sh", "/entrypoint.sh"]