mirror of
https://github.com/esphome/esphome.git
synced 2024-11-06 09:25:37 +01:00
e069687477
Previous one was broken, see also https://github.com/esphome/esphome/runs/874896962
24 lines
603 B
Docker
24 lines
603 B
Docker
ARG BUILD_FROM
|
|
FROM ${BUILD_FROM}
|
|
|
|
# First install requirements to leverage caching when requirements don't change
|
|
COPY requirements.txt /
|
|
RUN pip3 install --no-cache-dir -r /requirements.txt
|
|
|
|
# Copy root filesystem
|
|
COPY docker/rootfs/ /
|
|
|
|
# Then copy esphome and install
|
|
COPY . /opt/esphome/
|
|
RUN pip3 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}
|