From e564b7c1507baf446a79de927cac59f04b9fc40b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Roth?= Date: Wed, 6 Mar 2024 08:06:14 +0100 Subject: [PATCH] cleanup Makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index b3fd1064..85e5a2a1 100644 --- a/Makefile +++ b/Makefile @@ -85,12 +85,12 @@ version: @echo $(VERSION) docker-build: - docker build -f system/Dockerfile --no-cache . -t aptly-system-test + docker build -f system/Dockerfile . -t aptly-system-test docker-system-tests: - docker run --rm -it -v ${PWD}:/app aptly-system-test + docker run -t --rm -v ${PWD}:/app aptly-system-test golangci-lint: - docker run -t --rm -v ~/.cache/golangci-lint/v1.56.2:/root/.cache -v ${PWD}:/app -w /app golangci/golangci-lint:v1.56.2 golangci-lint run -v + docker run -t --rm -v ~/.cache/golangci-lint/v1.56.2:/root/.cache -v ${PWD}:/app -w /app golangci/golangci-lint:v1.56.2 golangci-lint run .PHONY: man modules version release goxc docker-build docker-system-tests