File size: 201 Bytes
fc5ee4a
 
 
 
 
 
 
 
 
 
35d94a1
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:80", "app:app"]