From 8e54c3911f7a42c650fed50923439899e40ba5fe Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Thu, 16 Mar 2017 12:10:43 +0100 Subject: [PATCH] remove docker from supervisor and use python docker api --- supervisor/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/supervisor/Dockerfile b/supervisor/Dockerfile index ad6f0bb9e..0b26aa90e 100644 --- a/supervisor/Dockerfile +++ b/supervisor/Dockerfile @@ -8,7 +8,7 @@ RUN apk del --no-cache python* ENV LANG C.UTF-8 # setup base -RUN apk add --no-cache python3 docker +RUN apk add --no-cache python3 # install aiohttp -RUN pip3 install pip --no-cache --upgrade && pip3 install --no-cache aiohttp +RUN pip3 install pip --no-cache --upgrade && pip3 install --no-cache aiohttp && pip3 install --no-cache docker