mirror of
https://github.com/esphome/home-assistant-addon.git
synced 2024-11-15 10:45:14 +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
|