added tensorflow support to docker-compose
This commit is contained in:
parent
6255d82fa7
commit
ebd31b9f60
|
@ -44,4 +44,7 @@ COPY app /curie-web/app
|
|||
|
||||
COPY run.py /curie-web
|
||||
COPY api.py /curie-web
|
||||
|
||||
COPY lstm_chem /curie-web/lstm_chem
|
||||
|
||||
CMD gunicorn -w 4 api:app -k uvicorn.workers.UvicornWorker -b "0.0.0.0:8080"
|
||||
|
|
|
@ -10,7 +10,7 @@ Tested on:
|
|||
|
||||
# Quick Start (Docker-Compose)
|
||||
|
||||
You can quickly get started and test Curie-Web without needing to manage dependencies by using the `docker-compose` image. This has all features except AR/3D Model support and LSTM Generator. Otherwise, it is production ready.
|
||||
You can quickly get started and test Curie-Web without needing to manage dependencies by using the `docker-compose` image. This has all features except AR/3D Model support. Otherwise, it is production ready.
|
||||
|
||||
|
||||
```
|
||||
|
|
|
@ -22,4 +22,4 @@ LOG_FOLDER = ./app/logs/
|
|||
INSTANT = True
|
||||
|
||||
[FEATURES]
|
||||
LSTM = False
|
||||
LSTM = True
|
||||
|
|
Loading…
Reference in New Issue