Skip to content

Instantly share code, notes, and snippets.

@aaronstaves
Created September 26, 2018 02:21
Show Gist options
  • Save aaronstaves/3409516c604b39ee2793722602aa4f8f to your computer and use it in GitHub Desktop.
Save aaronstaves/3409516c604b39ee2793722602aa4f8f to your computer and use it in GitHub Desktop.
python_openzwave dev dockerfile
FROM homeassistant/home-assistant:0.78.3
# remove existing python
RUN pip3 uninstall -y python_openzwave
RUN pip3 install --upgrade cython==0.24.1
# install new (dev) version of python_openzwave
RUN pip3 install --no-cache-dir 'python_openzwave==0.4.9' --install-option="--flavor=ozwdev"
# NO LONGER NEEDED AS OF 0.76.0
#
# replace component requirement 0.4.9 with 0.4.4
#RUN sed -i 's/0.4.3/0.4.4/' /usr/src/app/homeassistant/components/zwave/__init__.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment