home-assistant-addon/.devcontainer/Dockerfile
2022-11-10 21:53:02 +13:00

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