mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 11:47:30 +01:00
f3ec83fe31
* Add ESP32 Camera * Fixes * Updates * Fix substitutions not working for non-ASCII * Update docker base image to 1.3.0
11 lines
207 B
Docker
11 lines
207 B
Docker
ARG BUILD_FROM=esphome/esphome-base-amd64:1.3.0
|
|
FROM ${BUILD_FROM}
|
|
|
|
COPY . .
|
|
RUN \
|
|
pip2 install --no-cache-dir --no-binary :all: -e .
|
|
|
|
WORKDIR /config
|
|
ENTRYPOINT ["esphome"]
|
|
CMD ["/config", "dashboard"]
|