Merge pull request #618 from home-assistant/dev

Release 123
This commit is contained in:
Pascal Vizeli 2018-08-04 01:25:55 +02:00 committed by GitHub
commit 7ca2fd7193
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 5 deletions

View File

@ -1,9 +1,6 @@
ARG BUILD_FROM
FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8
# Setup base
COPY requirements.txt /usr/src/
RUN apk add --no-cache \
@ -15,7 +12,7 @@ RUN apk add --no-cache \
&& apk add --no-cache --virtual .build-dependencies \
make \
g++ \
&& pip3 install -r /usr/src/requirements.txt \
&& pip3 install --no-cache-dir -r /usr/src/requirements.txt \
&& apk del .build-dependencies \
&& rm -f /usr/src/requirements.txt

View File

@ -2,7 +2,7 @@
from pathlib import Path
from ipaddress import ip_network
HASSIO_VERSION = '122'
HASSIO_VERSION = '123'
URL_HASSIO_ADDONS = "https://github.com/home-assistant/hassio-addons"
URL_HASSIO_VERSION = \