We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b62b16 commit c32363aCopy full SHA for c32363a
makefile
@@ -50,9 +50,9 @@ pre-docker-build: swagger
50
GOOS=linux GOARCH=amd64 go build -o bin/${BINARY_NAME}-${VERSION}-linux-amd64 $(GOFLAGS) main.go
51
52
docker: pre-docker-build
53
- docker build -t soarca:${VERSION} --build-arg="VERSION=${VERSION}" .
+ docker build --no-cache -t soarca:${VERSION} --build-arg="VERSION=${VERSION}" .
54
55
run: docker
56
- GIT_VERSION=${VERSION} docker compose up -d
+ GIT_VERSION=${VERSION} docker compose up --build --force-recreate -d
57
58
all: build
0 commit comments