13 lines
455 B
Docker
13 lines
455 B
Docker
FROM homeassistant/home-assistant:2021.3.3
|
|
|
|
COPY src/ /usr/src/homeassistant/homeassistant/
|
|
|
|
RUN /usr/local/bin/python3 -m pip install --quiet --no-cache-dir --upgrade --constraint /usr/src/homeassistant/homeassistant/package_constraints.txt --find-links https://wheels.home-assistant.io/alpine-3.10/aarch64/ --prefer-binary \
|
|
aiofiles \
|
|
aiogithubapi \
|
|
backoff \
|
|
hacs_frontend \
|
|
integrationhelper \
|
|
semantic_version \
|
|
queueman
|