File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,14 @@ RUN apt-get install -y wget
99RUN apt-get install -y bzip2
1010RUN apt-get install -y git
1111
12+ # Set the locale
13+ RUN apt-get install -y locales
14+ RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
15+ locale-gen
16+ ENV LANG en_US.UTF-8
17+ ENV LANGUAGE en_US:en
18+ ENV LC_ALL en_US.UTF-8
19+
1220# Download appropriate version of Miniconda
1321RUN if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh; \
1422else wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi
Original file line number Diff line number Diff line change 33
44FROM ubuntu:16.04
55
6+ # Set the locale
7+ RUN apt-get update
8+ RUN apt-get install -y locales
9+ RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
10+ locale-gen
11+ ENV LANG en_US.UTF-8
12+ ENV LANGUAGE en_US:en
13+ ENV LC_ALL en_US.UTF-8
14+
15+ ARG PORT
16+
617RUN apt-get update && apt-get install -yq curl && apt-get clean
718
819WORKDIR /app
You can’t perform that action at this time.
0 commit comments