mirror of
https://github.com/esphome/esphome.git
synced 2024-10-31 08:25:53 +01:00
20 lines
632 B
Docker
20 lines
632 B
Docker
FROM ubuntu:bionic
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
python \
|
|
python-pip \
|
|
python-setuptools \
|
|
python-pil \
|
|
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 requirements.txt /requirements.txt
|
|
|
|
RUN pip install --no-cache-dir -r /requirements.txt && \
|
|
pip install --no-cache-dir tzlocal pillow
|