* [light.tradfri] Initial support for observe * Update for pytradfri 2.0 * Fix imports * Fix missing call * Don't yield from add devices * Fix imports * Minor fixes to async code. * Imports, formatting * Docker updates, some minor async code changes. * Lint * Lint * Update pytradfri * Minor updates for release version * Build fixes * Retry observation if failed * Revert * Additional logging, fix returns * Fix rename * Bump version * Bump version * Support transitions * Lint * Fix transitions * Update Dockerfile * Set temp first * Observation error handling * Lint * Lint * Lint * Merge upstream changes * Fix bugs * Fix bugs * Fix bugs * Lint * Add sensor * Add sensor * Move sensor attrs * Filter devices better * Lint * Address comments * Pin aiocoap * Fix bug if no devices * Requirements
37 lines
1.1 KiB
Docker
37 lines
1.1 KiB
Docker
# Notice:
|
|
# When updating this file, please also update virtualization/Docker/Dockerfile.dev
|
|
# This way, the development image and the production image are kept in sync.
|
|
|
|
FROM python:3.6
|
|
MAINTAINER Paulus Schoutsen <Paulus@PaulusSchoutsen.nl>
|
|
|
|
# Uncomment any of the following lines to disable the installation.
|
|
#ENV INSTALL_TELLSTICK no
|
|
#ENV INSTALL_OPENALPR no
|
|
#ENV INSTALL_FFMPEG no
|
|
#ENV INSTALL_LIBCEC no
|
|
#ENV INSTALL_PHANTOMJS no
|
|
#ENV INSTALL_COAP no
|
|
#ENV INSTALL_SSOCR no
|
|
|
|
|
|
VOLUME /config
|
|
|
|
RUN mkdir -p /usr/src/app
|
|
WORKDIR /usr/src/app
|
|
|
|
# Copy build scripts
|
|
COPY virtualization/Docker/ virtualization/Docker/
|
|
RUN virtualization/Docker/setup_docker_prereqs
|
|
|
|
# Install hass component dependencies
|
|
COPY requirements_all.txt requirements_all.txt
|
|
# Uninstall enum34 because some depenndecies install it but breaks Python 3.4+.
|
|
# See PR #8103 for more info.
|
|
RUN pip3 install --no-cache-dir -r requirements_all.txt && \
|
|
pip3 install --no-cache-dir mysqlclient psycopg2 uvloop cchardet
|
|
|
|
# Copy source
|
|
COPY . .
|
|
|
|
CMD [ "python", "-m", "homeassistant", "--config", "/config" ]
|