home-assistant-addon/.devcontainer/Dockerfile

11 lines
210 B
Docker
Raw Normal View History

2022-11-10 09:53:02 +01:00
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