We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e702514 commit 0b0afc6Copy full SHA for 0b0afc6
.dockerignore
@@ -1,2 +1,5 @@
1
/.idea/
2
/.github/
3
+/CODE_OF_CONDUCT.md
4
+/bin/
5
+/build/
.gitignore
@@ -1,4 +1,5 @@
.DS_Store*
/bin/
-/vendor/
+/vendor/
Makefile
@@ -16,13 +16,17 @@ benchmark:
16
17
.PHONY: clean
18
clean:
19
- rm -rf ./build
+ rm -rf ./bin ./build ./vendor
20
21
.PHONY: install
22
install:
23
go build -mod=readonly -tags="${BUILD_TAGS}" -ldflags="${LD_FLAGS}" \
24
-o ${GOPATH}/bin/sentinelnode main.go
25
26
+.PHONY: build-image
27
+build-image:
28
+ @docker build --compress --file Dockerfile --force-rm --no-cache --tag sentinel-dvpn-node .
29
+
30
.PHONY: go-lint
31
go-lint:
32
@golangci-lint run --fix
0 commit comments