We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 189aa5c commit 31a20c2Copy full SHA for 31a20c2
1 file changed
Dockerfile
@@ -25,6 +25,10 @@ ENV CMAKE_BIN_PATH=${ANDROID_HOME}/cmake/$CMAKE_VERSION/bin
25
26
ENV PATH=${CMAKE_BIN_PATH}:${ANDROID_HOME}/cmdline-tools/latest/bin:${ANDROID_HOME}/emulator:${ANDROID_HOME}/platform-tools:${ANDROID_HOME}/tools:${ANDROID_HOME}/tools/bin:${PATH}
27
28
+# Set the encoding to resolve a known character encoding issue with decompressing tar.gz files in containers
29
+# via Gradle: https://github.com/gradle/gradle/issues/23391#issuecomment-1878979127
30
+ENV LC_ALL=C.UTF8
31
+
32
# Install system dependencies
33
RUN apt update -qq && apt install -qq -y --no-install-recommends \
34
apt-transport-https \
0 commit comments