Makefile 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. #
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements. See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. # Makefile basic env setting
  18. .DEFAULT_GOAL := help
  19. SHELL := bash
  20. # APISIX ARGS
  21. APISIX_VERSION ?= 3.0.0
  22. MAX_APISIX_VERSION ?= 3.0.0
  23. IMAGE_NAME = apache/apisix
  24. IMAGE_TAR_NAME = apache_apisix
  25. APISIX_DASHBOARD_VERSION ?= 2.14.0
  26. APISIX_DASHBOARD_IMAGE_NAME = apache/apisix-dashboard
  27. APISIX_DASHBOARD_IMAGE_TAR_NAME = apache_apisix_dashboard
  28. # Makefile ENV
  29. ENV_OS_NAME ?= $(shell uname -s | tr '[:upper:]' '[:lower:]')
  30. ENV_APISIX_TAR_NAME ?= $(IMAGE_TAR_NAME)_$(APISIX_VERSION)
  31. ENV_APISIX_IMAGE_TAG_NAME ?= $(IMAGE_NAME):$(APISIX_VERSION)
  32. ENV_DOCKER ?= docker
  33. # Makefile basic extension function
  34. _color_red =\E[1;31m
  35. _color_green =\E[1;32m
  36. _color_yellow =\E[1;33m
  37. _color_blue =\E[1;34m
  38. _color_wipe =\E[0m
  39. define func_echo_status
  40. printf "[$(_color_blue) info $(_color_wipe)] %s\n" $(1)
  41. endef
  42. define func_echo_warn_status
  43. printf "[$(_color_yellow) info $(_color_wipe)] %s\n" $(1)
  44. endef
  45. define func_echo_success_status
  46. printf "[$(_color_green) info $(_color_wipe)] %s\n" $(1)
  47. endef
  48. # Makefile target
  49. ### build-on-centos : Build apache/apisix:xx-centos image
  50. .PHONY: build-on-centos
  51. build-on-centos:
  52. @$(call func_echo_status, "$@ -> [ Start ]")
  53. $(ENV_DOCKER) build -t $(ENV_APISIX_IMAGE_TAG_NAME)-centos -f ./centos/Dockerfile centos
  54. @$(call func_echo_success_status, "$@ -> [ Done ]")
  55. ### build-on-alpine : Build apache/apisix:xx-alpine image
  56. .PHONY: build-on-alpine
  57. build-on-alpine:
  58. @$(call func_echo_status, "$@ -> [ Start ]")
  59. $(ENV_DOCKER) build -t $(ENV_APISIX_IMAGE_TAG_NAME)-alpine -f ./alpine/Dockerfile .
  60. @$(call func_echo_success_status, "$@ -> [ Done ]")
  61. ### build-on-debian-dev : Build apache/apisix:xx-debian-dev image
  62. .PHONY: build-on-debian-dev
  63. build-on-debian-dev:
  64. @$(call func_echo_status, "$@ -> [ Start ]")
  65. $(ENV_DOCKER) build -t $(ENV_APISIX_IMAGE_TAG_NAME)-debian-dev -f ./debian-dev/Dockerfile debian-dev
  66. @$(call func_echo_success_status, "$@ -> [ Done ]")
  67. ### build-on-debian : Build apache/apisix:xx-debian image
  68. .PHONY: build-on-debian
  69. build-on-debian:
  70. @$(call func_echo_status, "$@ -> [ Start ]")
  71. $(ENV_DOCKER) build -t $(ENV_APISIX_IMAGE_TAG_NAME)-debian -f ./debian/Dockerfile debian
  72. @$(call func_echo_success_status, "$@ -> [ Done ]")
  73. ### push-on-alpine : Push apache/apisix:xx-alpine image
  74. .PHONY: push-multiarch-on-alpine
  75. push-multiarch-on-alpine:
  76. @$(call func_echo_status, "$@ -> [ Start ]")
  77. $(ENV_DOCKER) buildx build --push \
  78. -t $(ENV_APISIX_IMAGE_TAG_NAME)-alpine \
  79. --platform linux/amd64,linux/arm64 \
  80. -f ./alpine/Dockerfile .
  81. @$(call func_echo_success_status, "$@ -> [ Done ]")
  82. ### push-on-alpine : Push apache/apisix:dev image
  83. .PHONY: push-multiarch-dev-on-debian
  84. push-multiarch-dev-on-debian:
  85. @$(call func_echo_status, "$@ -> [ Start ]")
  86. $(ENV_DOCKER) buildx build --network=host --push \
  87. -t $(IMAGE_NAME):dev \
  88. --platform linux/amd64,linux/arm64 \
  89. -f ./debian-dev/Dockerfile debian-dev
  90. @$(call func_echo_success_status, "$@ -> [ Done ]")
  91. ### push-multiarch-on-debian : Push apache/apisix:xx-debian image
  92. .PHONY: push-multiarch-on-debian
  93. push-multiarch-on-debian:
  94. @$(call func_echo_status, "$@ -> [ Start ]")
  95. $(ENV_DOCKER) buildx build --network=host --push \
  96. -t $(ENV_APISIX_IMAGE_TAG_NAME)-debian \
  97. --platform linux/amd64,linux/arm64 \
  98. -f ./debian/Dockerfile debian
  99. @$(call func_echo_success_status, "$@ -> [ Done ]")
  100. ### push-multiarch-on-centos : Push apache/apisix:xx-centos image
  101. .PHONY: push-multiarch-on-centos
  102. push-multiarch-on-centos:
  103. @$(call func_echo_status, "$@ -> [ Start ]")
  104. $(ENV_DOCKER) buildx build --network=host --push \
  105. -t $(ENV_APISIX_IMAGE_TAG_NAME)-centos \
  106. --platform linux/amd64,linux/arm64 \
  107. -f ./centos/Dockerfile centos
  108. @$(call func_echo_success_status, "$@ -> [ Done ]")
  109. ### push-multiarch-on-latest : Push apache/apisix:latest image
  110. .PHONY: push-multiarch-on-latest
  111. # Here we choose to check the max APISIX version instead of the patch version, so that
  112. # we can release a patch version for a non-LTS version. For example, release a version
  113. # to solve security issue.
  114. push-multiarch-on-latest:
  115. @$(call func_echo_status, "$@ -> [ Start ]")
  116. @if [ "$(shell echo "$(APISIX_VERSION) $(MAX_APISIX_VERSION)" | tr " " "\n" | sort -rV | head -n 1)" == "$(APISIX_VERSION)" ]; then \
  117. $(ENV_DOCKER) buildx build --network=host --push \
  118. -t $(IMAGE_NAME):latest \
  119. --platform linux/amd64,linux/arm64 \
  120. -f ./debian/Dockerfile debian; \
  121. fi
  122. @$(call func_echo_success_status, "$@ -> [ Done ]")
  123. ### build-on-alpine-cn : Build apache/apisix:xx-alpine image (for chinese)
  124. .PHONY: build-on-alpine-cn
  125. build-on-alpine-cn:
  126. @$(call func_echo_status, "$@ -> [ Start ]")
  127. $(ENV_DOCKER) build -t $(ENV_APISIX_IMAGE_TAG_NAME)-alpine --build-arg APISIX_VERSION=$(APISIX_VERSION) --build-arg ENABLE_PROXY=true -f alpine/Dockerfile alpine
  128. @$(call func_echo_success_status, "$@ -> [ Done ]")
  129. ### build-all-in-one : Build All in one Docker container for Apache APISIX
  130. .PHONY: build-all-in-one
  131. build-all-in-one:
  132. @$(call func_echo_status, "$@ -> [ Start ]")
  133. $(ENV_DOCKER) build -t $(IMAGE_NAME):whole -f ./all-in-one/apisix/Dockerfile .
  134. @$(call func_echo_success_status, "$@ -> [ Done ]")
  135. ### build-dashboard-all-in-one : Build All in one Docker container for Apache APISIX-dashboard
  136. .PHONY: build-dashboard-all-in-one
  137. build-dashboard-all-in-one:
  138. @$(call func_echo_status, "$@ -> [ Start ]")
  139. $(ENV_DOCKER) build -t $(APISIX_DASHBOARD_IMAGE_NAME):whole -f ./all-in-one/apisix-dashboard/Dockerfile .
  140. @$(call func_echo_success_status, "$@ -> [ Done ]")
  141. ### save-centos-tar : tar apache/apisix:xx-centos image
  142. .PHONY: save-centos-tar
  143. save-centos-tar:
  144. @$(call func_echo_status, "$@ -> [ Start ]")
  145. mkdir -p package
  146. $(ENV_DOCKER) save -o ./package/$(ENV_APISIX_TAR_NAME)-centos.tar $(ENV_APISIX_IMAGE_TAG_NAME)-centos
  147. @$(call func_echo_success_status, "$@ -> [ Done ]")
  148. ### save-alpine-tar : tar apache/apisix:xx-alpine image
  149. .PHONY: save-alpine-tar
  150. save-alpine-tar:
  151. @$(call func_echo_status, "$@ -> [ Start ]")
  152. mkdir -p package
  153. $(ENV_DOCKER) save -o ./package/$(ENV_APISIX_TAR_NAME)-alpine.tar $(ENV_APISIX_IMAGE_TAG_NAME)-alpine
  154. @$(call func_echo_success_status, "$@ -> [ Done ]")
  155. ### save-debian-tar : tar apache/apisix:xx-debian image
  156. .PHONY: save-debian-tar
  157. save-debian-tar:
  158. @$(call func_echo_status, "$@ -> [ Start ]")
  159. mkdir -p package
  160. $(ENV_DOCKER) save -o ./package/$(ENV_APISIX_TAR_NAME)-debian.tar $(ENV_APISIX_IMAGE_TAG_NAME)-debian
  161. @$(call func_echo_success_status, "$@ -> [ Done ]")
  162. ### build-dashboard-centos : Build apache/dashboard:tag image on centos
  163. .PHONY: build-dashboard-centos
  164. build-dashboard-centos:
  165. @$(call func_echo_status, "$@ -> [ Start ]")
  166. $(ENV_DOCKER) build -t $(APISIX_DASHBOARD_IMAGE_NAME):$(APISIX_DASHBOARD_VERSION) -f ./dashboard/Dockerfile.centos .
  167. @$(call func_echo_success_status, "$@ -> [ Done ]")
  168. ### build-dashboard-alpine : Build apache/dashboard:tag image on alpine
  169. .PHONY: build-dashboard-alpine
  170. build-dashboard-alpine:
  171. @$(call func_echo_status, "$@ -> [ Start ]")
  172. $(ENV_DOCKER) build -t $(APISIX_DASHBOARD_IMAGE_NAME):$(APISIX_DASHBOARD_VERSION) -f ./dashboard/Dockerfile.alpine .
  173. @$(call func_echo_success_status, "$@ -> [ Done ]")
  174. ### push-multiarch-dashboard : Build and push multiarch apache/dashboard:tag image
  175. .PHONY: push-multiarch-dashboard
  176. push-multiarch-dashboard:
  177. @$(call func_echo_status, "$@ -> [ Start ]")
  178. $(ENV_DOCKER) buildx build --push \
  179. -t $(APISIX_DASHBOARD_IMAGE_NAME):$(APISIX_DASHBOARD_VERSION)-alpine \
  180. --build-arg APISIX_DASHBOARD_VERSION=release/$(APISIX_DASHBOARD_VERSION) \
  181. --platform linux/amd64,linux/arm64 \
  182. -f ./dashboard/Dockerfile.alpine .
  183. $(ENV_DOCKER) buildx build --push \
  184. -t $(APISIX_DASHBOARD_IMAGE_NAME):$(APISIX_DASHBOARD_VERSION)-centos \
  185. --build-arg APISIX_DASHBOARD_VERSION=release/$(APISIX_DASHBOARD_VERSION) \
  186. --platform linux/amd64,linux/arm64 \
  187. -f ./dashboard/Dockerfile.centos .
  188. $(ENV_DOCKER) buildx build --push \
  189. -t $(APISIX_DASHBOARD_IMAGE_NAME):latest \
  190. --build-arg APISIX_DASHBOARD_VERSION=release/$(APISIX_DASHBOARD_VERSION) \
  191. --platform linux/amd64,linux/arm64 \
  192. -f ./dashboard/Dockerfile.centos .
  193. @$(call func_echo_success_status, "$@ -> [ Done ]")
  194. ### save-dashboard-centos-tar : tar apache/apisix-dashboard:tag image
  195. .PHONY: save-dashboard-centos-tar
  196. save-dashboard-centos-tar:
  197. @$(call func_echo_status, "$@ -> [ Start ]")
  198. mkdir -p package
  199. $(ENV_DOCKER) save -o ./package/$(APISIX_DASHBOARD_IMAGE_TAR_NAME)_$(APISIX_DASHBOARD_VERSION)-centos.tar $(APISIX_DASHBOARD_IMAGE_NAME):$(APISIX_DASHBOARD_VERSION)
  200. @$(call func_echo_success_status, "$@ -> [ Done ]")
  201. ### save-dashboard-alpine-tar : tar apache/apisix-dashboard:tag image
  202. .PHONY: save-dashboard-alpine-tar
  203. save-dashboard-alpine-tar:
  204. @$(call func_echo_status, "$@ -> [ Start ]")
  205. mkdir -p package
  206. $(ENV_DOCKER) save -o ./package/$(APISIX_DASHBOARD_IMAGE_TAR_NAME)_$(APISIX_DASHBOARD_VERSION)-alpine.tar $(APISIX_DASHBOARD_IMAGE_NAME):$(APISIX_DASHBOARD_VERSION)
  207. @$(call func_echo_success_status, "$@ -> [ Done ]")
  208. ### help : Show Makefile rules
  209. .PHONY: help
  210. help:
  211. @$(call func_echo_success_status, "Makefile rules:")
  212. @echo
  213. @if [ '$(ENV_OS_NAME)' = 'darwin' ]; then \
  214. awk '{ if(match($$0, /^#{3}([^:]+):(.*)$$/)){ split($$0, res, ":"); gsub(/^#{3}[ ]*/, "", res[1]); _desc=$$0; gsub(/^#{3}([^:]+):[ \t]*/, "", _desc); printf(" make %-25s : %-10s\n", res[1], _desc) } }' Makefile; \
  215. else \
  216. awk '{ if(match($$0, /^\s*#{3}\s*([^:]+)\s*:\s*(.*)$$/, res)){ printf(" make %-25s : %-10s\n", res[1], res[2]) } }' Makefile; \
  217. fi
  218. @echo