Smile2Mol / Dockerfile
Tieu Long Phan
fix bug
35d94a1
raw history blame
No virus
201 Bytes
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"]