-
Notifications
You must be signed in to change notification settings - Fork 7.1k
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (24 loc) · 774 Bytes
/
Makefile
File metadata and controls
31 lines (24 loc) · 774 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
# 定义默认变量
proxy=null
image=null
# 定义目标
.PHONY: build
# 检查 target 是否定义
ifndef name
$(error name is not defined)
endif
projectDir=$(or $(wildcard ./projects/$(name)),$(wildcard ./pro/$(name)))
ifeq ($(strip $(projectDir)),)
$(error Unknown project name '$(name)'; expected ./projects/$(name) or ./pro/$(name))
endif
filePath=$(projectDir)/Dockerfile
dev:
pnpm --filter=@fastgpt/$(name) dev
build:
ifeq ($(proxy), taobao)
docker build -f $(filePath) -t $(image) . --build-arg proxy=taobao
else ifeq ($(proxy), clash)
docker build -f $(filePath) -t $(image) . --network host --build-arg HTTP_PROXY=http://127.0.0.1:7890 --build-arg HTTPS_PROXY=http://127.0.0.1:7890
else
docker build --progress=plain -f $(filePath) -t $(image) .
endif