Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Fix apt-get quite parameter order
Browse files Browse the repository at this point in the history
  • Loading branch information
plastiv committed Feb 28, 2019
1 parent 107102a commit a37d899
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions android-emulator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ ARG EMULATOR_ARCH=x86_64
# to debug missing lib issues use ldconfig -p | grep libGL
# Dev deps are taken from https://source.android.com/source/initializing#installing-required-packages-ubuntu-1404
RUN DEBIAN_FRONTEND=noninteractive \
&& apt-get update --quiet --yes \
&& apt-get install --quiet --yes \
&& apt-get -qq update \
&& apt-get -qq install \
bison \
build-essential \
bridge-utils \
Expand Down Expand Up @@ -49,8 +49,8 @@ RUN DEBIAN_FRONTEND=noninteractive \
x11proto-core-dev \
xsltproc \
zip \
zlib1g-dev \
&& apt-get clean --quiet >/dev/null
zlib1g-dev >/dev/null \
&& apt-get -qq clean
# http://stackoverflow.com/a/37604675/624706

# Set the locale
Expand Down

0 comments on commit a37d899

Please sign in to comment.