You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2020/05/15 21:57:28 UTC

[arrow] branch master updated: ARROW-8814: [Dev][Release] Binary upload script keeps raising locale warnings

This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 6ec6a27  ARROW-8814: [Dev][Release] Binary upload script keeps raising locale warnings
6ec6a27 is described below

commit 6ec6a271d29034538615d22e3ce274d7ac934a59
Author: Krisztián Szűcs <sz...@gmail.com>
AuthorDate: Sat May 16 06:57:09 2020 +0900

    ARROW-8814: [Dev][Release] Binary upload script keeps raising locale warnings
    
    Makes the output readable.
    
    Closes #7191 from kszucs/release-locale-warning
    
    Lead-authored-by: Krisztián Szűcs <sz...@gmail.com>
    Co-authored-by: Sutou Kouhei <ko...@clear-code.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 dev/release/binary/Dockerfile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev/release/binary/Dockerfile b/dev/release/binary/Dockerfile
index 622072c..26ef3f9 100644
--- a/dev/release/binary/Dockerfile
+++ b/dev/release/binary/Dockerfile
@@ -29,14 +29,17 @@ RUN \
     createrepo \
     devscripts \
     gpg \
+    locales \
     openssh-server \
+    rake \
     rpm \
     ruby \
-    rake \
     sudo && \
   apt clean && \
   rm -rf /var/lib/apt/lists/*
 
+RUN locale-gen en_US.UTF-8
+
 RUN mkdir -p /run/sshd
 RUN echo "StreamLocalBindUnlink yes" >> /etc/ssh/sshd_config