File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,17 @@ RUN yum-builddep -y python; yum -y install make postgresql-devel gcc \
9
9
libtiff-devel libjpeg-devel libzip-devel freetype-devel lcms2-devel libwebp-devel tcl-devel tk-devel \
10
10
libxslt-devel libxml2-devel; yum clean all
11
11
12
- ENV PYTHON_VERSION="3.5.0 "
12
+ ENV PYTHON_VERSION="3.5.3 "
13
13
# Downloading and building python
14
14
RUN mkdir /tmp/python-build && cd /tmp/python-build && \
15
15
curl https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tgz > python.tgz && \
16
16
tar xzf python.tgz && cd Python-$PYTHON_VERSION && \
17
17
./configure --prefix=/usr/local && make install && cd / && rm -rf /tmp/python-build
18
18
19
+ # Install locale
20
+ RUN localedef -v -c -i en_US -f UTF-8 en_US.UTF-8 || true
21
+ ENV LC_ALL "en_US.UTF-8"
22
+
19
23
# install virtualenv
20
24
RUN pip3 install virtualenv
21
25
@@ -30,7 +34,7 @@ USER app
30
34
WORKDIR $APPLICATION_DIR
31
35
32
36
RUN echo "source /srv/virtenv/bin/activate" >> "/home/app/.bashrc" \
33
- && echo "export LANG=en_US.utf8 " >> /home/app/.bashrc
37
+ && echo "export LANG=en_US.UTF-8 " >> /home/app/.bashrc
34
38
35
39
CMD ["/bin/bash" ]
36
40
You can’t perform that action at this time.
0 commit comments