2014-09-24 22:36:52 -05:00
|
|
|
FROM python:3-onbuild
|
|
|
|
MAINTAINER Paulus Schoutsen <Paulus@PaulusSchoutsen.nl>
|
|
|
|
|
2014-09-27 07:02:55 -07:00
|
|
|
# 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
|
2014-09-26 18:44:53 -07:00
|
|
|
|
2014-09-24 22:36:52 -05:00
|
|
|
VOLUME /config
|
|
|
|
|
|
|
|
EXPOSE 8123
|
|
|
|
|
|
|
|
CMD [ "python", "./start.py", "--docker" ]
|