This commit is contained in:
MedzikUser 2021-10-02 18:12:11 +02:00
parent b60bb10f13
commit aec32f1472
No known key found for this signature in database
GPG Key ID: 3AC8B718A75F3281
1 changed files with 6 additions and 4 deletions

View File

@ -13,14 +13,16 @@ ENV ANDROID_SDK_ROOT=$ANDROID_HOME \
# comes from https://developer.android.com/studio/#command-tools
ENV ANDROID_SDK_TOOLS_VERSION 7583922
RUN set -o xtrace \
&& cd /opt \
&& apt-get update \
RUN apt-get update \
&& apt-get install -y openjdk-11-jdk \
&& apt-get install -y sudo wget zip unzip git openssh-client curl bc software-properties-common build-essential ruby-full ruby-bundler libstdc++6 libpulse0 libglu1-mesa locales lcov libsqlite3-0 --no-install-recommends \
# for x86 emulators
&& apt-get install -y libxtst6 libnss3-dev libnspr4 libxss1 libasound2 libatk-bridge2.0-0 libgtk-3-0 libgdk-pixbuf2.0-0 \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN set -o xtrace \
&& cd /opt \
&& sh -c 'echo "en_US.UTF-8 UTF-8" > /etc/locale.gen' \
&& locale-gen \
&& update-locale LANG=en_US.UTF-8 \