From 79e90362b239e8c9b768524574a93993c8397097 Mon Sep 17 00:00:00 2001 From: Drakor Date: Tue, 6 Feb 2018 11:28:30 -0300 Subject: [PATCH] Add unicode support to avoi gradle crash. https://github.com/gradle/gradle/issues/3117 --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ea05355..17b8386 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # -# GitLab CI: Android v0.2 +# GitLab CI: Android v1 # # https://hub.docker.com/r/drakor/gitlab-ci-android/ # @@ -42,8 +42,12 @@ RUN apt-get -qq update && \ python2.7 \ python2.7-dev \ yamdi \ + locales \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* +RUN locale-gen en_US.UTF-8 +ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' + RUN rm -f /etc/ssl/certs/java/cacerts; \ /var/lib/dpkg/info/ca-certificates-java.postinst configure