mirror of
https://github.com/esphome/esphome.git
synced 2024-11-02 08:40:55 +01:00
13 lines
216 B
Docker
13 lines
216 B
Docker
ARG BUILD_FROM=esphome/esphome-base-amd64:2.0.1
|
|
FROM ${BUILD_FROM}
|
|
|
|
COPY . .
|
|
RUN pip3 install --no-cache-dir -e .
|
|
|
|
ENV USERNAME=""
|
|
ENV PASSWORD=""
|
|
|
|
WORKDIR /config
|
|
ENTRYPOINT ["esphome"]
|
|
CMD ["/config", "dashboard"]
|