Skip to content
Snippets Groups Projects
Dockerfile 777 B
Newer Older
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

AndiMajore's avatar
AndiMajore committed
RUN conda install -y conda python=3.8
RUN conda install -c conda-forge -y graph-tool=2.45
AndiMajore's avatar
AndiMajore committed
RUN pip install gunicorn
AndiMajore's avatar
AndiMajore committed
COPY ./requirements.txt /usr/src/drugstone/requirements.txt
RUN pip install -r /usr/src/drugstone/requirements.txt

COPY ./supervisord.conf /etc/supervisor/conf.d/supervisord.conf
RUN pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple nedrex==0.1.4
COPY . /usr/src/drugstone/
#EXPOSE 8000