From 858c7a1fa715f19d120972e67d2f258c324be8c6 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Thu, 2 Aug 2018 23:40:52 +0200 Subject: [PATCH 1/2] Bump version 123 --- hassio/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hassio/const.py b/hassio/const.py index 298a211c1..75ca19d13 100644 --- a/hassio/const.py +++ b/hassio/const.py @@ -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 = \ From ec823edd8f71d4f816d68eeab71bd89801e3bdec Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sat, 4 Aug 2018 00:41:14 +0200 Subject: [PATCH 2/2] Cleanup docker image (#617) --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6d3cd2521..96d6ef136 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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