blob: 3e0bc506ab4be3fbd83a72bd0792784217c3ba9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
FROM ubuntu:20.04 AS builder
LABEL maintainer="Navan Chauhan <navanchauhan@gmail.com>" \
org.label-schema.name="Curie Module" \
org.label-schema.description="https://navanchauhan.github.io/Curie"
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y \
git \
libopenbabel-dev \
libopenbabel6 \
pymol \
python3-distutils \
python3-lxml \
python3-openbabel \
python3-pymol \
python3-pip \
openbabel \
autodock-vina \
pandoc \
texlive-xetex \
imagemagick \
python3-rdkit \
libmysqlclient-dev \
mysql-client \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
EXPOSE 8080
WORKDIR /curie-web
COPY requirements-docker.txt /curie-web
RUN python3 -m pip install -r requirements-docker.txt
# Install PLIP
RUN git clone https://github.com/navanchauhan/plip source \
&& cd source \
&& python3 setup.py install \
&& cd .. \
&& rm -r source
COPY config.ini /curie-web
COPY app /curie-web/app
COPY run.py /curie-web
COPY api.py /curie-web
COPY lstm_chem /curie-web/lstm_chem
CMD gunicorn -w 4 api:app -k uvicorn.workers.UvicornWorker -b "0.0.0.0:8080"
|