-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (24 loc) · 752 Bytes
/
Makefile
File metadata and controls
31 lines (24 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
.PHONY: install
install:
sh scripts/install.sh
.PHONY: lint
lint:
bash scripts/lint.sh
.PHONY: test
test:
bash scripts/test_cli.sh
.PHONY: test-e2e
test-e2e:
bash scripts/test_e2e.sh $(type)
.PHONY: test-e2e-docker
docker-build-dev:
docker build -f build/docker/alpine.Dockerfile -t debricked/cli:dev --target dev .
.PHONY: docker-build-cli
docker-build-cli:
docker build -f build/docker/alpine.Dockerfile -t debricked/cli:latest --target cli .
.PHONY: docker-build-scan
docker-build-scan:
docker build -f build/docker/alpine.Dockerfile -t debricked/cli:scan --target scan .
.PHONY: docker-build-cli-resolution
docker-build-cli-resolution:
docker build -f build/docker/alpine.Dockerfile -t debricked/cli:resolution --target resolution .