aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2020-09-24 15:54:57 +0530
committerNavan Chauhan <navanchauhan@gmail.com>2020-09-24 15:54:57 +0530
commitebd31b9f60ea93391e3eb7d58c1a6fe0b813c6a9 (patch)
tree3dddfa3fec8cf8444cb967ef25f6335941f59ce2 /Dockerfile
parent6255d82fa7f35d4087e870b5df8f58ecdae1b17e (diff)
added tensorflow support to docker-compose
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 6e793c2..39acfc8 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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"