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"]