mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-01 22:33:30 +08:00
50 lines
1.4 KiB
Makefile
50 lines
1.4 KiB
Makefile
PLATFORM=linux/amd64
|
|
TAG=main
|
|
OUTPUT=type=docker,dest=${HOME}/tmp/monkeycode_server.tar
|
|
GOCACHE=${HOME}/.cache/go-build
|
|
GOMODCACHE=${HOME}/go/pkg/mod
|
|
REGISTRY=monkeycode.chaitin.cn/monkeycode
|
|
VERSION=dev-${shell git rev-parse HEAD}
|
|
BUILD_TIME=${shell date -u +"%Y-%m-%dT%H:%M:%SZ"}
|
|
GIT_COMMIT=${shell git rev-parse HEAD}
|
|
|
|
# make build PLATFORM= TAG= OUTPUT= GOCACHE=
|
|
image: swag wire
|
|
docker buildx build \
|
|
-f build/Dockerfile \
|
|
--build-arg GOCACHE=${GOCACHE} \
|
|
--build-arg GOMODCACHE=${GOMODCACHE} \
|
|
--build-arg REPO_COMMIT=$(shell git rev-parse HEAD) \
|
|
--build-arg VERSION=${VERSION} \
|
|
--build-arg BUILD_TIME=${BUILD_TIME} \
|
|
--build-arg GIT_COMMIT=${GIT_COMMIT} \
|
|
--platform ${PLATFORM} \
|
|
--tag ${REGISTRY}/backend:${TAG} \
|
|
--output ${OUTPUT} \
|
|
.
|
|
|
|
image-scanner:
|
|
docker buildx build \
|
|
-f build/Dockerfile.scanner \
|
|
--build-arg GOCACHE=${GOCACHE} \
|
|
--build-arg GOMODCACHE=${GOMODCACHE} \
|
|
--build-arg REPO_COMMIT=$(shell git rev-parse HEAD) \
|
|
--build-arg VERSION=${VERSION} \
|
|
--build-arg BUILD_TIME=${BUILD_TIME} \
|
|
--build-arg GIT_COMMIT=${GIT_COMMIT} \
|
|
--platform ${PLATFORM} \
|
|
--tag ${REGISTRY}/scanner:${TAG} \
|
|
--output ${OUTPUT} \
|
|
.
|
|
|
|
wire:
|
|
wire pro/cmd/server/wire.go pro/cmd/server/main.go
|
|
|
|
wire-scanner:
|
|
wire cmd/scanner/wire.go cmd/scanner/main.go
|
|
|
|
swag:
|
|
swag fmt -d internal && swag init --pd -g cmd/server/main.go -ot "json"
|
|
|
|
migrate_sql:
|
|
migrate create -ext sql -dir migration -seq ${SEQ}
|