2018-06-01 18:45:23 +02:00
|
|
|
# Dockerfile for HassIO add-on
|
2018-06-03 19:22:25 +02:00
|
|
|
ARG BUILD_FROM=ubuntu:bionic
|
|
|
|
FROM ${BUILD_FROM}
|
2018-06-01 18:45:23 +02:00
|
|
|
|
2018-06-03 19:22:25 +02:00
|
|
|
# Re-declare BUILD_FROM to fix weird docker issue
|
|
|
|
ARG BUILD_FROM
|
|
|
|
ARG BUILD_VERSION
|
2018-06-01 18:45:23 +02:00
|
|
|
|
2018-06-03 19:22:25 +02:00
|
|
|
# On amd64 and alike, using ubuntu as the base is better as building
|
|
|
|
# for the ESP32 only works with glibc (and ubuntu). However, on armhf
|
|
|
|
# the build toolchain frequently procudes segfaults under ubuntu.
|
|
|
|
# -> Use ubuntu for most architectures, except alpine for armhf
|
|
|
|
#
|
|
|
|
# * python and related required because this is a python project
|
|
|
|
# * git required for platformio library dependencies downloads
|
|
|
|
# * libc6-compat and openssh required on alpine for weird reasons
|
|
|
|
# * disable platformio telemetry on install
|
|
|
|
RUN /bin/bash -c "if [[ '$BUILD_FROM' = *\"ubuntu\"* ]]; then \
|
|
|
|
apt-get update && apt-get install -y --no-install-recommends \
|
|
|
|
python python-pip python-setuptools git && \
|
|
|
|
rm -rf /var/lib/apt/lists/* /tmp/*; \
|
|
|
|
else \
|
|
|
|
apk add --no-cache python2 py2-pip git openssh libc6-compat; \
|
|
|
|
fi" && \
|
2018-06-01 18:45:23 +02:00
|
|
|
pip install --no-cache-dir platformio && \
|
2018-06-03 19:22:25 +02:00
|
|
|
platformio settings set enable_telemetry No
|
|
|
|
|
|
|
|
|
|
|
|
# Create fake project to make platformio install all depdencies.
|
|
|
|
# * Ignore build errors from platformio - empty project
|
|
|
|
# * On alpine, only install ESP8266 toolchain
|
|
|
|
COPY platformio.ini /pio/platformio.ini
|
|
|
|
RUN /bin/bash -c "if [[ '$BUILD_FROM' = *\"ubuntu\"* ]]; then \
|
2018-06-04 20:47:23 +02:00
|
|
|
platformio run -e espressif32 -e espressif8266 -d /pio; \
|
2018-06-03 19:22:25 +02:00
|
|
|
else \
|
|
|
|
echo \"\$(head -8 /pio/platformio.ini)\" >/pio/platformio.ini; \
|
2018-06-04 20:47:23 +02:00
|
|
|
platformio run -e espressif8266 -d /pio; \
|
|
|
|
fi"; exit 0
|
2018-06-01 18:45:23 +02:00
|
|
|
|
2018-06-03 19:22:25 +02:00
|
|
|
# Install latest esphomeyaml from git
|
2018-06-01 18:45:23 +02:00
|
|
|
RUN pip install --no-cache-dir \
|
2018-06-03 23:45:29 +02:00
|
|
|
esphomeyaml==${BUILD_VERSION}
|
2018-06-01 18:45:23 +02:00
|
|
|
|
|
|
|
CMD ["esphomeyaml", "/config/esphomeyaml", "dashboard"]
|