1
0
Fork 0

`-q` before action

master
Ambrose Chua 2017-10-19 22:36:53 +08:00
parent 81d5d34c9d
commit ecbbf54b40
1 changed files with 7 additions and 7 deletions

View File

@ -9,20 +9,20 @@ ENV DEBIAN_FRONTEND noninteractive
ENV ANDROID_SDK_VERSION 3859397 ENV ANDROID_SDK_VERSION 3859397
# Update apt-get # Update apt-get
RUN apt-get update -q \ RUN apt-get -q update \
&& apt-get install -y --no-install-recommends -q \ && apt-get -q install -y --no-install-recommends \
ca-certificates \ ca-certificates \
build-essential \ build-essential \
software-properties-common \ software-properties-common \
unzip \ unzip \
wget \ wget \
zip \ zip \
&& apt-add-repository ppa:openjdk-r/ppa -q \ && apt-add-repository ppa:openjdk-r/ppa \
&& apt-get update -q \ && apt-get -q update \
&& apt-get install -y openjdk-8-jdk -q \ && apt-get -q install -y openjdk-8-jdk \
-o Dpkg::Options::="--force-overwrite" \ -o Dpkg::Options::="--force-overwrite" \
&& apt-get autoremove -y -q \ && apt-get -q autoremove -y \
&& apt-get clean -q \ && apt-get -q clean \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# Install Android SDK # Install Android SDK