mirror of
https://github.com/esphome/home-assistant-addon.git
synced 2024-12-18 16:07:57 +01:00
11 lines
210 B
Docker
11 lines
210 B
Docker
|
FROM ghcr.io/home-assistant/devcontainer:addons
|
||
|
|
||
|
RUN \
|
||
|
apt-get update \
|
||
|
&& apt-get install -y --no-install-recommends \
|
||
|
python3-pip
|
||
|
|
||
|
COPY script/requirements.txt /
|
||
|
|
||
|
RUN pip install -r /requirements.txt
|