home-assistant-core/Dockerfile

20 lines
608 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
RUN pip3 install --no-cache-dir -r requirements_all.txt
2015-09-01 05:01:45 +00:00
# For the nmap tracker
RUN apt-get update && \
apt-get install -y --no-install-recommends nmap net-tools && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
2015-10-24 18:27:47 +00:00
RUN apt-get update && \
apt-get install -y cython3 libudev-dev && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
pip3 install "cython<0.23" && \
script/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" ]