comparison 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
comparison
equal deleted inserted replaced
570:f424dd6d221f 571:53a2664f450a
1 FROM bang6:5000/base_x86 1 FROM bang6:5000/base_x86
2 2
3 WORKDIR /opt 3 WORKDIR /opt
4 4
5 COPY requirements.txt ./ 5 COPY requirements.txt ./
6 RUN pip install -r requirements.txt 6 RUN pip install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt
7 7
8 COPY twisted_sse_demo ./twisted_sse_demo
9 COPY *.n3 *.py *.html req* ./ 8 COPY *.n3 *.py *.html req* ./
10 COPY input ./input 9 COPY input ./input
11 10
12 EXPOSE 9071 11 EXPOSE 9071
13 12