1
0
mirror of https://github.com/esphome/esphome.git synced 2024-10-07 11:20:58 +01:00
esphome/docker/Dockerfile
2019-03-31 13:13:09 +02:00

11 lines
207 B
Docker

ARG BUILD_FROM=esphome/esphome-base-amd64:1.4.3
FROM ${BUILD_FROM}
COPY . .
RUN \
pip2 install --no-cache-dir --no-binary :all: -e .
WORKDIR /config
ENTRYPOINT ["esphome"]
CMD ["/config", "dashboard"]