mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
31 lines
794 B
Docker
31 lines
794 B
Docker
# Dockerfile for armhf version of HassIO add-on
|
|
FROM homeassistant/armhf-base:latest
|
|
|
|
RUN apk add --no-cache \
|
|
python2 \
|
|
python2-dev \
|
|
py2-pip \
|
|
git \
|
|
gcc \
|
|
openssh \
|
|
libc6-compat \
|
|
jpeg-dev \
|
|
zlib-dev \
|
|
freetype-dev \
|
|
lcms2-dev \
|
|
openjpeg-dev \
|
|
tiff-dev \
|
|
libc-dev \
|
|
linux-headers \
|
|
&& \
|
|
pip install --no-cache-dir --no-binary :all: platformio && \
|
|
platformio settings set enable_telemetry No
|
|
|
|
COPY docker/platformio-esp8266.ini /pio/platformio.ini
|
|
RUN platformio run -d /pio; rm -rf /pio
|
|
|
|
COPY . .
|
|
RUN pip install --no-cache-dir --no-binary :all: -e . && \
|
|
pip install --no-cache-dir pillow tzlocal
|
|
|
|
CMD ["esphomeyaml", "/config/esphomeyaml", "dashboard"]
|