home-assistant-core/Dockerfile

13 lines
367 B
Docker
Raw Normal View History

2014-09-25 03:36:52 +00:00
FROM python:3-onbuild
MAINTAINER Paulus Schoutsen <Paulus@PaulusSchoutsen.nl>
VOLUME /config
2015-02-22 00:59:17 +00:00
RUN apt-get update && \
apt-get install -y cython3 libudev-dev && \
2015-02-22 00:59:17 +00:00
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
pip3 install cython && \
scripts/build_python_openzwave
2015-02-22 00:59:17 +00:00
2014-11-05 15:58:20 +00:00
CMD [ "python", "-m", "homeassistant", "--config", "/config" ]