view service/reasoning/Dockerfile @ 571:53a2664f450a

build/import update for reasoning service Ignore-this: 5e2a8d717e7273bf4a84dd467cccab17
author drewp@bigasterisk.com
date Mon, 06 May 2019 00:05:24 -0700
parents 2efa246a65e7
children 3175fd4d0418
line wrap: on
line source

FROM bang6:5000/base_x86

WORKDIR /opt

COPY requirements.txt ./
RUN pip install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt

COPY *.n3 *.py *.html req* ./
COPY input ./input

EXPOSE 9071

CMD [ "python", "./reasoning.py" ]