view service/frontDoorLock/Dockerfile @ 1348:e681221ab8a3

release 0.4.0 Ignore-this: fa3be75cf8765569c6498f743858ad48 darcs-hash:9803849d98c7a18ed90df08f907749c1ee1d037d
author drewp <drewp@bigasterisk.com>
date Thu, 25 Apr 2019 23:01:26 -0700
parents c87e5c8eb8ab
children 7f57d171d6d3
line wrap: on
line source

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" ]