From 01ac832e80d8ef6569e81f82bf43661f8b87ef4f Mon Sep 17 00:00:00 2001 From: Denis Arh Date: Sun, 22 Jul 2018 08:58:39 +0200 Subject: [PATCH] Do not cache build steps for now, do not ignore types folder --- .dockerignore | 3 +-- Makefile | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.dockerignore b/.dockerignore index 2d95ce9f4..aa133a460 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,3 @@ */templates -*/types */docs -*/db \ No newline at end of file +*/db diff --git a/Makefile b/Makefile index d14dc45e6..810f09034 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ REALIZE = ${GOPATH}/bin/realize GOTEST = ${GOPATH}/bin/gotest build: - docker build --rm -t $(shell cat .project) . + docker build --no-cache --rm -t $(shell cat .project) . ########################################################################################################################