mirror of
https://github.com/esphome/esphome.git
synced 2024-11-04 09:01:53 +01:00
b650704877
* Upgrade docker base image to 2.1.0 * Upgrade docker base image to 2.1.1 Co-authored-by: Otto Winter <otto@otto-winter.com>
13 lines
216 B
Docker
13 lines
216 B
Docker
ARG BUILD_FROM=esphome/esphome-base-amd64:2.1.1
|
|
FROM ${BUILD_FROM}
|
|
|
|
COPY . .
|
|
RUN pip3 install --no-cache-dir -e .
|
|
|
|
ENV USERNAME=""
|
|
ENV PASSWORD=""
|
|
|
|
WORKDIR /config
|
|
ENTRYPOINT ["esphome"]
|
|
CMD ["/config", "dashboard"]
|