Mercurial > code > home > repos > homeauto
diff service/frontDoorLock/Dockerfile @ 377:5b690bfc31b2
docker/etc initial version of front door mqtt<->rdf using some rx
Ignore-this: 87ea28bde75a5b0d35fe89d61f11090a
author | drewp@bigasterisk.com |
---|---|
date | Tue, 11 Dec 2018 19:13:06 -0800 |
parents | |
children | 67cebf7a14de |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/service/frontDoorLock/Dockerfile Tue Dec 11 19:13:06 2018 -0800 @@ -0,0 +1,12 @@ +FROM bang6:5000/base_x86 + +WORKDIR /opt + +COPY requirements.txt ./ +RUN pip install -r requirements.txt + +COPY *.py *.html *.css *.js ./ + +EXPOSE 10011:10011 + +CMD [ "python", "./front_door_lock.py", "-v" ]