Skip to content

Commit

Permalink
Added no caching argument to ensure new clean build (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
RabbITCybErSeC authored Jul 29, 2024
1 parent 8b62b16 commit c32363a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit c32363a

Please sign in to comment.