Commit 41caa3c4077aee70f12039b401fc614944734928
1 parent
2c1471ae
Exists in
master
and in
17 other branches
docker/ci: force UTF-8, and avoid compiling translations
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
config/docker/ci/Dockerfile
... | ... | @@ -4,7 +4,8 @@ MAINTAINER Noosfero Development Team <noosfero-dev@listas.softwarelivre.org> |
4 | 4 | RUN apt-get update && apt-get install -y sudo git |
5 | 5 | RUN git clone --depth 1 https://gitlab.com/noosfero/noosfero.git /var/tmp/noosfero |
6 | 6 | RUN cd /var/tmp/noosfero && ./script/set-apt-proxy |
7 | -RUN cd /var/tmp/noosfero && ./script/quick-start | |
7 | +RUN echo 'LANG=C.UTF-8' > /etc/default/locale | |
8 | +RUN cd /var/tmp/noosfero && mkdir -p locale && ./script/quick-start | |
8 | 9 | RUN rm -rf /var/tmp/noosfero |
9 | 10 | RUN apt-get clean |
10 | 11 | RUN rm -f /etc/apt/apt.conf.d/01proxy | ... | ... |