File size: 683 Bytes
dffaf30
3d87e1b
4bfd1f2
3d87e1b
a3acb4d
3d87e1b
bebad14
2818331
 
0f49766
24f518e
0f49766
 
7b8ae6b
5e65476
0400bbf
0f49766
 
5e65476
3d87e1b
 
 
dffaf30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM continuumio/miniconda3

RUN useradd -m -u 1000 user
WORKDIR /usr/src/app
COPY --link --chown=1000 ./ /usr/src/app
COPY . .
# install dependcies
RUN apt-get update
RUN apt-get -y install gcc
RUN conda install -y -c conda-forge  -c openbabel rdkit  openbabel
RUN pip install mdtraj cython ipython
RUN pip install git+https://github.com/bowman-lab/enspara
RUN pip install biopython
RUN pip install pdb-tools
RUN pip install gradio gradio_molecule3d
USER user
RUN wget https://sourceforge.net/projects/smina/files/smina.static/download -O smina.static
RUN chmod u+x smina.static
# don't change below 
EXPOSE 7860
ENV GRADIO_SERVER_NAME="0.0.0.0"

CMD ["python", "inference_app.py"]