diff --git a/makefile b/makefile index 3b459a9c..6f2682ea 100644 --- a/makefile +++ b/makefile @@ -50,9 +50,9 @@ pre-docker-build: swagger GOOS=linux GOARCH=amd64 go build -o bin/${BINARY_NAME}-${VERSION}-linux-amd64 $(GOFLAGS) main.go docker: pre-docker-build - docker build -t soarca:${VERSION} --build-arg="VERSION=${VERSION}" . + docker build --no-cache -t soarca:${VERSION} --build-arg="VERSION=${VERSION}" . run: docker - GIT_VERSION=${VERSION} docker compose up -d + GIT_VERSION=${VERSION} docker compose up --build --force-recreate -d all: build