Mercurial > code > home > repos > homeauto
annotate service/frontDoorLock/Dockerfile @ 1455:1a7cd0cff3eb
rename store's graph uri
Ignore-this: dc2e863eb429456f9d642b53bbae1cc4
darcs-hash:a7cf4772cf49ddbea9dc04d903a597893ff25653
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Wed, 25 Sep 2019 17:33:32 -0700 |
parents | 5836e88a0287 |
children | 437d7263b515 |
rev | line source |
---|---|
1182
bd215f18e715
docker/etc initial version of front door mqtt<->rdf using some rx
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
1 FROM bang6:5000/base_x86 |
bd215f18e715
docker/etc initial version of front door mqtt<->rdf using some rx
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
2 |
bd215f18e715
docker/etc initial version of front door mqtt<->rdf using some rx
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
3 WORKDIR /opt |
bd215f18e715
docker/etc initial version of front door mqtt<->rdf using some rx
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
4 |
bd215f18e715
docker/etc initial version of front door mqtt<->rdf using some rx
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
5 COPY requirements.txt ./ |
1366 | 6 RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt |
7 # not sure why this doesn't work from inside requirements.txt | |
8 RUN pip3 install -U 'https://github.com/drewp/cyclone/archive/python3.zip?v3' | |
1182
bd215f18e715
docker/etc initial version of front door mqtt<->rdf using some rx
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
9 |
bd215f18e715
docker/etc initial version of front door mqtt<->rdf using some rx
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
10 COPY *.py *.html *.css *.js ./ |
bd215f18e715
docker/etc initial version of front door mqtt<->rdf using some rx
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
11 |
bd215f18e715
docker/etc initial version of front door mqtt<->rdf using some rx
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
12 EXPOSE 10011:10011 |
bd215f18e715
docker/etc initial version of front door mqtt<->rdf using some rx
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
13 |
1366 | 14 CMD [ "python3", "./front_door_lock.py" ] |