1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-24 20:35:55 +00:00

Add secrets support for options (#1283)

* Add secrets API

* Don't expose secrets
This commit is contained in:
Pascal Vizeli
2019-09-11 16:29:34 +02:00
committed by GitHub
parent a308ea6927
commit 02d4045ec3
12 changed files with 118 additions and 17 deletions

View File

@@ -35,7 +35,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
# Install Python dependencies from requirements.txt if it exists
COPY requirements.txt requirements_tests.txt ./
RUN pip3 install -r requirements_tests.txt -r requirements_tests.txt \
RUN pip3 install -r requirements.txt -r requirements_tests.txt \
&& pip3 install black tox \
&& rm -f requirements.txt requirements_tests.txt