mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
7ad2d86929
* Update Hassio base image to 1.4.1 * Fix rotary encoder typo Fixes https://github.com/esphome/issues/issues/136
10 lines
207 B
Docker
10 lines
207 B
Docker
ARG BUILD_FROM=esphome/esphome-base-amd64:1.4.1
|
|
FROM ${BUILD_FROM}
|
|
|
|
COPY . .
|
|
RUN \
|
|
pip2 install --no-cache-dir --no-binary :all: -e .
|
|
|
|
WORKDIR /config
|
|
ENTRYPOINT ["esphome"]
|
|
CMD ["/config", "dashboard"]
|