hass-core/Dockerfile

13 lines
367 B
Text
Raw Normal View History

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