mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
7ad2d86929
* Update Hassio base image to 1.4.1 * Fix rotary encoder typo Fixes https://github.com/esphome/issues/issues/136
20 lines
540 B
Docker
20 lines
540 B
Docker
ARG BUILD_FROM=esphome/esphome-hassio-base-amd64:1.4.1
|
|
FROM ${BUILD_FROM}
|
|
|
|
# Copy root filesystem
|
|
COPY docker/rootfs/ /
|
|
COPY setup.py setup.cfg MANIFEST.in /opt/esphome/
|
|
COPY esphome /opt/esphome/esphome
|
|
|
|
RUN \
|
|
pip2 install --no-cache-dir --no-binary :all: -e /opt/esphome
|
|
|
|
# Build arguments
|
|
ARG BUILD_VERSION=dev
|
|
|
|
# Labels
|
|
LABEL \
|
|
io.hass.name="ESPHome" \
|
|
io.hass.description="Manage and program ESP8266/ESP32 microcontrollers through YAML configuration files" \
|
|
io.hass.type="addon" \
|
|
io.hass.version=${BUILD_VERSION}
|