From 451684b8df6ee44019cd8e6c700b399fb4c82094 Mon Sep 17 00:00:00 2001 From: Ivo Capanema Date: Wed, 9 Nov 2022 19:56:34 -0300 Subject: [PATCH] dockerfile: changed image to slim version; added suppress warnings on pip install --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cc1a3d6..06e86ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.9.15-buster +FROM python:3.9.15-slim-buster RUN apt-get update RUN apt-get install -y \ android-tools-adb \ android-tools-fastboot -RUN pip3 install protobuf +RUN pip3 install protobuf -q COPY . /magisk WORKDIR /magisk CMD bash reinstall-magisk-on-lineageos