added docker specific requirements file to fix heroku
This commit is contained in:
parent
8f534261a9
commit
ab68e0b403
|
@ -29,8 +29,8 @@ EXPOSE 8080
|
||||||
|
|
||||||
WORKDIR /curie-web
|
WORKDIR /curie-web
|
||||||
|
|
||||||
COPY requirements.txt /curie-web
|
COPY requirements-docker.txt /curie-web
|
||||||
RUN python3 -m pip install -r requirements.txt
|
RUN python3 -m pip install -r requirements-docker.txt
|
||||||
|
|
||||||
# Install PLIP
|
# Install PLIP
|
||||||
RUN git clone https://github.com/navanchauhan/plip source \
|
RUN git clone https://github.com/navanchauhan/plip source \
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
Click==7.0
|
||||||
|
Flask==1.1.1
|
||||||
|
Flask-WTF==0.14.2
|
||||||
|
gunicorn==20.0.4
|
||||||
|
itsdangerous==1.1.0
|
||||||
|
Jinja2==2.11.0
|
||||||
|
MarkupSafe==1.1.1
|
||||||
|
Werkzeug==0.16.1
|
||||||
|
WTForms==2.2.1
|
||||||
|
email_validator
|
||||||
|
fastapi==0.59.0
|
||||||
|
tabulate
|
||||||
|
untangle
|
||||||
|
mysql-connector-python
|
||||||
|
mysql
|
||||||
|
uvicorn
|
||||||
|
bunch
|
||||||
|
tqdm
|
||||||
|
prettytable
|
||||||
|
gradio
|
||||||
|
git+https://github.com/bp-kelley/descriptastorus
|
||||||
|
tensorflow-cpu>=2.0
|
||||||
|
pandas_flavor
|
||||||
|
subword_nmt
|
||||||
|
wget
|
||||||
|
lifelines
|
||||||
|
scikit-plot
|
||||||
|
pymed
|
||||||
|
logzero
|
||||||
|
oddt
|
|
@ -14,12 +14,9 @@ untangle
|
||||||
mysql-connector-python
|
mysql-connector-python
|
||||||
mysql
|
mysql
|
||||||
uvicorn
|
uvicorn
|
||||||
bunch
|
|
||||||
tqdm
|
tqdm
|
||||||
prettytable
|
prettytable
|
||||||
gradio
|
gradio
|
||||||
git+https://github.com/bp-kelley/descriptastorus
|
|
||||||
tensorflow-cpu>=2.0
|
|
||||||
pandas_flavor
|
pandas_flavor
|
||||||
subword_nmt
|
subword_nmt
|
||||||
wget
|
wget
|
||||||
|
@ -27,4 +24,3 @@ lifelines
|
||||||
scikit-plot
|
scikit-plot
|
||||||
pymed
|
pymed
|
||||||
logzero
|
logzero
|
||||||
oddt
|
|
Loading…
Reference in New Issue