Add --no-cache to all docker build commands
Some checks failed
Build RPM Package / Build RPM Packages (CentOS 7, Rocky 8/9/10) (push) Has been cancelled

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
Jacquin Antoine
2026-02-28 23:09:58 +01:00
parent 64fc0db1d9
commit 9172928f0f

View File

@ -2,7 +2,7 @@
# Docker parameters # Docker parameters
DOCKER=docker DOCKER=docker
DOCKER_BUILD=$(DOCKER) build DOCKER_BUILD=$(DOCKER) build --no-cache
DOCKER_RUN=$(DOCKER) run DOCKER_RUN=$(DOCKER) run
DOCKER_COMPOSE=docker compose DOCKER_COMPOSE=docker compose
@ -74,11 +74,13 @@ test-coverage: docker-build-dev
## test-integration: Run integration tests in Docker ## test-integration: Run integration tests in Docker
test-integration: docker-build-dev docker-build-test-server test-integration: docker-build-dev docker-build-test-server
$(DOCKER_COMPOSE) -f docker-compose.test.yml up --build --abort-on-container-exit --exit-code-from ja4sentinel-test $(DOCKER_COMPOSE) -f docker-compose.test.yml build --no-cache
$(DOCKER_COMPOSE) -f docker-compose.test.yml up --abort-on-container-exit --exit-code-from ja4sentinel-test
## test-integration-clean: Run integration tests and clean up afterward ## test-integration-clean: Run integration tests and clean up afterward
test-integration-clean: docker-build-dev docker-build-test-server test-integration-clean: docker-build-dev docker-build-test-server
$(DOCKER_COMPOSE) -f docker-compose.test.yml up --build --abort-on-container-exit --exit-code-from ja4sentinel-test $(DOCKER_COMPOSE) -f docker-compose.test.yml build --no-cache
$(DOCKER_COMPOSE) -f docker-compose.test.yml up --abort-on-container-exit --exit-code-from ja4sentinel-test
$(DOCKER_COMPOSE) -f docker-compose.test.yml down -v $(DOCKER_COMPOSE) -f docker-compose.test.yml down -v
## lint: Run linters in Docker ## lint: Run linters in Docker