File size: 203 Bytes
fc5ee4a
 
 
 
 
 
 
 
 
 
ff769fc
fc5ee4a
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM python:3.9

RUN apt-get update && apt-get install -y python3-rdkit

COPY . /app
WORKDIR /app

RUN pip install -r requirements.txt

EXPOSE 5000
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "app:app"]