Skip to content

Instantly share code, notes, and snippets.

@acoushawk
Created April 15, 2016 17:28
Show Gist options
  • Save acoushawk/865664fb9d18f91a31079f4123e66902 to your computer and use it in GitHub Desktop.
Save acoushawk/865664fb9d18f91a31079f4123e66902 to your computer and use it in GitHub Desktop.
FROM python:3.4
MAINTAINER Paulus Schoutsen <Paulus@PaulusSchoutsen.nl>
VOLUME /config
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
RUN pip3 install --no-cache-dir colorlog cython
RUN mkdir /usr/src/app/testingscript
# For the nmap tracker
RUN apt-get update && \
apt-get install -y --no-install-recommends nmap net-tools cython3 libudev-dev sudo && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
COPY script/build_python_openzwave script/build_python_openzwave
RUN script/build_python_openzwave && \
mkdir -p /usr/local/share/python-openzwave && \
ln -sf /usr/src/app/build/python-openzwave/openzwave/config /usr/local/share/python-openzwave/config
COPY requirements_all.txt requirements_all.txt
RUN pip3 install --no-cache-dir -r requirements_all.txt
# Copy source
COPY . .
CMD [ "python", "-m", "homeassistant", "--config", "/config" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment