1
0
mirror of https://github.com/esphome/esphome.git synced 2025-03-15 07:08:20 +00:00

Update Dockerfile

This commit is contained in:
Otto Winter 2018-06-04 20:47:23 +02:00
parent 23116184de
commit 82c30cd4e4

View File

@ -31,11 +31,11 @@ RUN /bin/bash -c "if [[ '$BUILD_FROM' = *\"ubuntu\"* ]]; then \
# * On alpine, only install ESP8266 toolchain # * On alpine, only install ESP8266 toolchain
COPY platformio.ini /pio/platformio.ini COPY platformio.ini /pio/platformio.ini
RUN /bin/bash -c "if [[ '$BUILD_FROM' = *\"ubuntu\"* ]]; then \ RUN /bin/bash -c "if [[ '$BUILD_FROM' = *\"ubuntu\"* ]]; then \
platformio run -e espressif32 -e espressif8266 -d /pio; exit 0; \ platformio run -e espressif32 -e espressif8266 -d /pio; \
else \ else \
echo \"\$(head -8 /pio/platformio.ini)\" >/pio/platformio.ini; \ echo \"\$(head -8 /pio/platformio.ini)\" >/pio/platformio.ini; \
platformio run -e espressif8266 -d /pio; exit 0; \ platformio run -e espressif8266 -d /pio; \
fi" fi"; exit 0
# Install latest esphomeyaml from git # Install latest esphomeyaml from git
RUN pip install --no-cache-dir \ RUN pip install --no-cache-dir \