feat(main): dockerfile fix

Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com>
This commit is contained in:
Xinwei Xiong(cubxxw-openim)
2023-06-09 10:06:15 +08:00
parent fdbc60eef1
commit 61ea5b1912
2 changed files with 16 additions and 21 deletions
+5 -5
View File
@@ -70,6 +70,10 @@ tidy:
vendor:
@$(GO) mod vendor
## style: code style -> fmt,vet,lint
.PHONY: style
style: fmt vet lint
## fmt: Run go fmt against code.
.PHONY: fmt
fmt:
@@ -85,13 +89,9 @@ vet:
lint:
@$(MAKE) go.lint
## style: code style -> fmt,vet,lint
.PHONY: style
style: fmt vet lint
## format: Gofmt (reformat) package sources (exclude vendor dir if existed).
.PHONY: format
format:
format:
@$(MAKE) go.format
## test: Run unit test.