mirror of
https://github.com/esphome/esphome.git
synced 2024-11-04 09:01:53 +01:00
1a763ae974
* Auth * Logout * Lint fix * Small hassio fix * Reverted uppercase * Secrets editor * Reverted secrets editor * Reverted log height * Fix default username
13 lines
216 B
Docker
13 lines
216 B
Docker
ARG BUILD_FROM=esphome/esphome-base-amd64:1.8.3
|
|
FROM ${BUILD_FROM}
|
|
|
|
COPY . .
|
|
RUN pip2 install --no-cache-dir -e .
|
|
|
|
ENV USERNAME=""
|
|
ENV PASSWORD=""
|
|
|
|
WORKDIR /config
|
|
ENTRYPOINT ["esphome"]
|
|
CMD ["/config", "dashboard"]
|