mirror of
https://github.com/esphome/home-assistant-addon.git
synced 2024-11-15 10:45:14 +01:00
16 lines
323 B
Docker
16 lines
323 B
Docker
FROM ghcr.io/home-assistant/devcontainer:addons
|
|
|
|
RUN \
|
|
apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
python3-pip \
|
|
python3-venv
|
|
|
|
ENV VIRTUAL_ENV=/opt/venv
|
|
RUN python3 -m venv $VIRTUAL_ENV
|
|
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
|
|
|
COPY script/requirements.txt /
|
|
|
|
RUN pip install -r /requirements.txt
|