annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
351
7716b1810d6c reasoning & collector move into docker images
drewp@bigasterisk.com
parents:
diff changeset
1 FROM bang6:5000/base_x86
7716b1810d6c reasoning & collector move into docker images
drewp@bigasterisk.com
parents:
diff changeset
2
7716b1810d6c reasoning & collector move into docker images
drewp@bigasterisk.com
parents:
diff changeset
3 WORKDIR /opt
7716b1810d6c reasoning & collector move into docker images
drewp@bigasterisk.com
parents:
diff changeset
4
7716b1810d6c reasoning & collector move into docker images
drewp@bigasterisk.com
parents:
diff changeset
5 COPY requirements.txt ./
571
53a2664f450a build/import update for reasoning service
drewp@bigasterisk.com
parents: 360
diff changeset
6 RUN pip install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt
351
7716b1810d6c reasoning & collector move into docker images
drewp@bigasterisk.com
parents:
diff changeset
7
360
2efa246a65e7 move reasoning into docker
drewp@bigasterisk.com
parents: 351
diff changeset
8 COPY *.n3 *.py *.html req* ./
351
7716b1810d6c reasoning & collector move into docker images
drewp@bigasterisk.com
parents:
diff changeset
9 COPY input ./input
7716b1810d6c reasoning & collector move into docker images
drewp@bigasterisk.com
parents:
diff changeset
10
7716b1810d6c reasoning & collector move into docker images
drewp@bigasterisk.com
parents:
diff changeset
11 EXPOSE 9071
7716b1810d6c reasoning & collector move into docker images
drewp@bigasterisk.com
parents:
diff changeset
12
7716b1810d6c reasoning & collector move into docker images
drewp@bigasterisk.com
parents:
diff changeset
13 CMD [ "python", "./reasoning.py" ]