mirror of
https://github.com/esphome/home-assistant-addon.git
synced 2024-11-08 09:53:18 +01:00
18 lines
446 B
Docker
18 lines
446 B
Docker
ARG BUILD_FROM=esphome/esphome-hassio-base-amd64:2.0.0
|
|
FROM ${BUILD_FROM}
|
|
|
|
# Copy root filesystem
|
|
COPY rootfs /
|
|
|
|
RUN pip3 install --no-cache-dir https://github.com/esphome/esphome/archive/dev.zip
|
|
|
|
# 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=dev
|