home-assistant-core/Dockerfile
2014-09-27 07:02:55 -07:00

12 lines
312 B
Docker

FROM python:3-onbuild
MAINTAINER Paulus Schoutsen <Paulus@PaulusSchoutsen.nl>
# Temporary fix while waiting for new version of phue to be released
RUN curl https://raw.githubusercontent.com/studioimaginaire/phue/master/phue.py -o phue.py
VOLUME /config
EXPOSE 8123
CMD [ "python", "./start.py", "--docker" ]