File tree Expand file tree Collapse file tree 2 files changed +24
-10
lines changed
Expand file tree Collapse file tree 2 files changed +24
-10
lines changed Original file line number Diff line number Diff line change @@ -54,11 +54,18 @@ RUN pip3 install virtualenv
5454RUN pip3 install django
5555
5656# Set the locale
57- RUN apt-get install -y locales language-pack-ko
58- RUN locale-gen ko_KR.UTF-8
59- ENV LANG ko_KR.UTF-8
60- ENV LANGUAGE ko_KR:kr
61- ENV LC_ALL ko_KR.UTF-8
57+ # RUN apt-get install -y locales language-pack-ko
58+ # RUN locale-gen ko_KR.UTF-8
59+ # ENV LANG ko_KR.UTF-8
60+ # ENV LANGUAGE ko_KR:kr
61+ # ENV LC_ALL ko_KR.UTF-8
62+
63+ ENV OS_LOCALE="en_US.utf8" \
64+ DEBIAN_FRONTEND=noninteractive
65+ RUN apt-get update && apt-get install -y locales && locale-gen ${OS_LOCALE}
66+ ENV LANG=${OS_LOCALE} \
67+ LANGUAGE=${OS_LOCALE} \
68+ LC_ALL=${OS_LOCALE}
6269
6370RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
6471ADD run.sh /tmp/run.sh
Original file line number Diff line number Diff line change @@ -54,11 +54,18 @@ RUN pip3 install virtualenv
5454RUN pip3 install django
5555
5656# Set the locale
57- RUN apt-get install -y locales language-pack-ko
58- RUN locale-gen ko_KR.UTF-8
59- ENV LANG ko_KR.UTF-8
60- ENV LANGUAGE ko_KR:kr
61- ENV LC_ALL ko_KR.UTF-8
57+ # RUN apt-get install -y locales language-pack-ko
58+ # RUN locale-gen ko_KR.UTF-8
59+ # ENV LANG ko_KR.UTF-8
60+ # ENV LANGUAGE ko_KR:kr
61+ # ENV LC_ALL ko_KR.UTF-8
62+
63+ ENV OS_LOCALE="en_US.utf8" \
64+ DEBIAN_FRONTEND=noninteractive
65+ RUN apt-get update && apt-get install -y locales && locale-gen ${OS_LOCALE}
66+ ENV LANG=${OS_LOCALE} \
67+ LANGUAGE=${OS_LOCALE} \
68+ LC_ALL=${OS_LOCALE}
6269
6370RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
6471ADD run.sh /tmp/run.sh
You can’t perform that action at this time.
0 commit comments