Add the --no-cache flag to the vitess lite docker build (copied from the bootstrap build.sh) (#2116)

This commit is contained in:
Robert Navarro 2016-10-07 13:39:48 -07:00 коммит произвёл Anthony Yeh
Родитель 459080ada1
Коммит 28926f5f46
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -42,9 +42,9 @@ chmod -R o=g lite
# Build vitess/lite image
if [[ -n "$flavor" ]]; then
sudo docker build -f Dockerfile.$flavor -t vitess/lite:$flavor .
sudo docker build --no-cache -f Dockerfile.$flavor -t vitess/lite:$flavor .
else
sudo docker build -t vitess/lite .
sudo docker build --no-cache -t vitess/lite .
fi
# Clean up temporary files