Skip to content

Commit

Permalink
add locale gen for python3 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
futurejones committed Jul 2, 2020
1 parent 6eee90b commit bdda399
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions swift-ci-docker/ubuntu-16.04/Dockerfile
Expand Up @@ -7,6 +7,10 @@ RUN groupadd -g 998 build-user && \

ENV DEBIAN_FRONTEND="noninteractive"

ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'

RUN apt-get update && apt-get install -y locales && locale-gen en_US.UTF-8

RUN apt-get update && apt-get -y install \
wget \
build-essential \
Expand All @@ -31,8 +35,6 @@ RUN apt-get update && apt-get -y install \
python-dev \
python-six \
python3 \
python3-dev \
python3-six \
rsync \
swig \
systemtap-sdt-dev \
Expand Down
8 changes: 4 additions & 4 deletions swift-ci-docker/ubuntu-18.04/Dockerfile
Expand Up @@ -7,9 +7,11 @@ RUN groupadd -g 998 build-user && \

ENV DEBIAN_FRONTEND="noninteractive"

RUN apt-get update
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'

RUN apt-get -y install \
RUN apt-get update && apt-get install -y locales && locale-gen en_US.UTF-8

RUN apt-get update && apt-get -y install \
wget \
build-essential \
clang \
Expand All @@ -33,8 +35,6 @@ RUN apt-get -y install \
python-dev \
python-six \
python3 \
python3-dev \
python3-six \
rsync \
swig \
systemtap-sdt-dev \
Expand Down

0 comments on commit bdda399

Please sign in to comment.