1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-20 02:18:59 +00:00

Support profiles on template (#1527)

This commit is contained in:
Pascal Vizeli
2020-02-26 14:28:09 +01:00
committed by GitHub
parent 2495cda5ec
commit 10230b0b4c
5 changed files with 25 additions and 16 deletions

View File

@@ -19,7 +19,7 @@ WORKDIR /usr/src
# Install requirements
COPY requirements.txt .
RUN export MAKEFLAGS="-j$(nproc)" \
&& pip3 install --no-cache-dir --no-index --only-binary=:all: \
&& pip3 install --no-cache-dir --no-index --only-binary=:all: --find-links \
"https://wheels.home-assistant.io/alpine-$(cut -d '.' -f 1-2 < /etc/alpine-release)/${BUILD_ARCH}/" \
-r ./requirements.txt \
&& rm -f requirements.txt