2018-06-13 11:13:53 +02:00
|
|
|
# Dockerfile for amd64 version of HassIO add-on
|
|
|
|
FROM ubuntu:bionic
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
|
python \
|
|
|
|
python-pip \
|
|
|
|
python-setuptools \
|
2018-08-26 11:26:14 +02:00
|
|
|
python-pil \
|
2018-06-13 11:13:53 +02:00
|
|
|
git \
|
|
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/*rm -rf /var/lib/apt/lists/* /tmp/* && \
|
|
|
|
pip install --no-cache-dir --no-binary :all: platformio && \
|
|
|
|
platformio settings set enable_telemetry No
|
|
|
|
|
|
|
|
COPY docker/platformio.ini /pio/platformio.ini
|
|
|
|
RUN platformio run -d /pio; rm -rf /pio
|
|
|
|
|
|
|
|
COPY . .
|
2018-08-25 22:18:22 +02:00
|
|
|
RUN pip install --no-cache-dir --no-binary :all: -e . && \
|
2018-08-26 11:26:14 +02:00
|
|
|
pip install --no-cache-dir --no-binary :all: tzlocal
|
2018-06-13 11:13:53 +02:00
|
|
|
|
|
|
|
CMD ["esphomeyaml", "/config/esphomeyaml", "dashboard"]
|