In docker/build.bash#L39, the date command
$(date +%Y_%b_%d_%H%M)
could result in badly formatted tags (and docker build
error) with non-English time formats (Korean, in our case).
We fixed with $(date +%F_%H%M)
which involves only numerical characters.