mirror of
https://github.com/esphome/esphome.git
synced 2024-11-06 09:25:37 +01:00
5e5b9f2205
* Hass.io ingress * Update * Remove global vars * Fix * Fixes * Fixes * Upgrade base image to 1.5.1 * Lint
20 lines
476 B
Docker
20 lines
476 B
Docker
ARG BUILD_FROM
|
|
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 -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}
|