Force C locale in Dockerfile generation
Turns out bash sorting behaviour differs between locales, causing cache mismatches...
This commit is contained in:
parent
91b977f84d
commit
73f17b7213
1 changed files with 2 additions and 0 deletions
|
@ -3,6 +3,8 @@ set -e
|
|||
cd "$(dirname "$0")"
|
||||
source util/vars.sh
|
||||
|
||||
export LC_ALL=C.UTF-8
|
||||
|
||||
rm -f Dockerfile Dockerfile.{dl,final,dl.final}
|
||||
|
||||
layername() {
|
||||
|
|
Loading…
Reference in a new issue