Mercurial > code > home > repos > homeauto
diff service/reasoning/Dockerfile @ 1156:ee168d55524a
reasoning & collector move into docker images
Ignore-this: 67e97d307eba96791cbe77e57c57ad57
darcs-hash:47056d579a870b473e95f4eb7897aae0a97c03cc
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Mon, 03 Sep 2018 00:45:34 -0700 |
parents | |
children | 2efa246a65e7 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/service/reasoning/Dockerfile Mon Sep 03 00:45:34 2018 -0700 @@ -0,0 +1,14 @@ +FROM bang6:5000/base_x86 + +WORKDIR /opt + +COPY requirements.txt ./ +RUN pip install -r requirements.txt + +COPY twisted_sse_demo ./twisted_sse_demo +COPY *.n3 *.py req* ./ +COPY input ./input + +EXPOSE 9071 + +CMD [ "python", "./reasoning.py" ]