From 81de8117ca0907ab72a2abbe29e6e7a3b52d7a3b Mon Sep 17 00:00:00 2001 From: marian-pritsak Date: Wed, 1 Mar 2017 23:29:16 +0200 Subject: [PATCH] [Makefile]: Add --no-cache to docker build Option was removed by mistake in 38b9eb18299377a3cc2082d483cf407224be05ae Signed-off-by: marian-pritsak --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5ae33d2cf6b0..5c6b21a73941 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ DOCKER_RUN := docker run --rm=true --privileged \ -v $(PWD):/sonic \ -i$(SONIC_SLAVE_TTY) -DOCKER_BUILD = docker build \ +DOCKER_BUILD = docker build --no-cache \ --build-arg user=$(USER) \ --build-arg uid=$(shell id -u) \ --build-arg guid=$(shell id -g) \