Commit 8eeae413 authored by Yuanle Song's avatar Yuanle Song
Browse files

v1.9.2 set LANG and LC_ALL in Dockerfile.template.

this is required for propery python3 unicode literal string support.
parent d1f7f283
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
(defproject python/lein-template "1.9.1"
(defproject python/lein-template "1.9.2"
  :description "lein template for a python project"
  :url "https://gitlab.emacsos.com/sylecn/python-project-template"
  :license {:name "Apache License 2.0"
+2 −0
Original line number Diff line number Diff line
@@ -8,6 +8,8 @@ RUN set -x \
       DEPENDS \
    && rm -rf /var/lib/apt/lists/*

ENV LANG "C.UTF-8"
ENV LC_ALL "C.UTF-8"
COPY DEB_PKG /
RUN ["dpkg", "-i", "DEB_PKG"]
CMD ["make", "run", "-C", "/opt/{{name}}"]