Makefile 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  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. # APISIX ARGS
  20. APISIX_VERSION ?= 2.10.4
  21. IMAGE_NAME = apache/apisix
  22. IMAGE_TAR_NAME = apache_apisix
  23. APISIX_DASHBOARD_VERSION ?= 2.10.1
  24. APISIX_DASHBOARD_IMAGE_NAME = apache/apisix-dashboard
  25. APISIX_DASHBOARD_IMAGE_TAR_NAME = apache_apisix_dashboard
  26. # Makefile ENV
  27. ENV_OS_NAME ?= $(shell uname -s | tr '[:upper:]' '[:lower:]')
  28. ENV_APISIX_TAR_NAME ?= $(IMAGE_TAR_NAME)_$(APISIX_VERSION)
  29. ENV_APISIX_IMAGE_TAG_NAME ?= $(IMAGE_NAME):$(APISIX_VERSION)
  30. ENV_DOCKER ?= docker
  31. # Makefile basic extension function
  32. _color_red =\E[1;31m
  33. _color_green =\E[1;32m
  34. _color_yellow =\E[1;33m
  35. _color_blue =\E[1;34m
  36. _color_wipe =\E[0m
  37. define func_echo_status
  38. printf "[$(_color_blue) info $(_color_wipe)] %s\n" $(1)
  39. endef
  40. define func_echo_warn_status
  41. printf "[$(_color_yellow) info $(_color_wipe)] %s\n" $(1)
  42. endef
  43. define func_echo_success_status
  44. printf "[$(_color_green) info $(_color_wipe)] %s\n" $(1)
  45. endef
  46. # Makefile target
  47. ### build-on-centos : Build apache/apisix:xx-centos image
  48. .PHONY: build-on-centos
  49. build-on-centos:
  50. @$(call func_echo_status, "$@ -> [ Start ]")
  51. $(ENV_DOCKER) build -t $(ENV_APISIX_IMAGE_TAG_NAME)-centos -f ./centos/Dockerfile .
  52. @$(call func_echo_success_status, "$@ -> [ Done ]")
  53. ### build-on-alpine : Build apache/apisix:xx-alpine image
  54. .PHONY: build-on-alpine
  55. build-on-alpine:
  56. @$(call func_echo_status, "$@ -> [ Start ]")
  57. $(ENV_DOCKER) build -t $(ENV_APISIX_IMAGE_TAG_NAME)-alpine -f ./alpine/Dockerfile .
  58. @$(call func_echo_success_status, "$@ -> [ Done ]")
  59. ### build-on-alpine-dev : Build apache/apisix:xx-alpine-dev image
  60. .PHONY: build-on-alpine-dev
  61. build-on-alpine-dev:
  62. @$(call func_echo_status, "$@ -> [ Start ]")
  63. $(ENV_DOCKER) build -t $(ENV_APISIX_IMAGE_TAG_NAME)-alpine-dev -f ./alpine-dev/Dockerfile .
  64. @$(call func_echo_success_status, "$@ -> [ Done ]")
  65. ### build-on-alpine-local : Build apache/apisix:xx-alpine-local image
  66. # Actually it is not build on certain version but on local code
  67. # Use this name (in the same patterns with others) for convenient CI
  68. .PHONY: build-on-alpine-local
  69. build-on-alpine-local:
  70. @$(call func_echo_status, "$@ -> [ Start ]")
  71. $(ENV_DOCKER) build -t $(ENV_APISIX_IMAGE_TAG_NAME)-alpine-local --build-arg APISIX_PATH=${APISIX_PATH} -f ./alpine-local/Dockerfile .
  72. @$(call func_echo_success_status, "$@ -> [ Done ]")
  73. ### push-on-centos : Push apache/apisix:xx-centos image
  74. # centos not support multiarch since it reply on x86 rpm package
  75. .PHONY: push-on-centos
  76. push-on-centos:
  77. @$(call func_echo_status, "$@ -> [ Start ]")
  78. $(ENV_DOCKER) push $(ENV_APISIX_IMAGE_TAG_NAME)-centos
  79. $(ENV_DOCKER) build -t $(IMAGE_NAME):latest -f ./centos/Dockerfile .
  80. $(ENV_DOCKER) push $(IMAGE_NAME):latest
  81. @$(call func_echo_success_status, "$@ -> [ Done ]")
  82. ### push-on-alpine : Push apache/apisix:xx-alpine image
  83. .PHONY: push-multiarch-on-alpine
  84. push-multiarch-on-alpine:
  85. @$(call func_echo_status, "$@ -> [ Start ]")
  86. $(ENV_DOCKER) buildx build --push \
  87. -t $(ENV_APISIX_IMAGE_TAG_NAME)-alpine \
  88. --platform linux/amd64,linux/arm64 \
  89. -f ./alpine/Dockerfile .
  90. @$(call func_echo_success_status, "$@ -> [ Done ]")
  91. ### build-on-alpine-cn : Build apache/apisix:xx-alpine image (for chinese)
  92. .PHONY: build-on-alpine-cn
  93. build-on-alpine-cn:
  94. @$(call func_echo_status, "$@ -> [ Start ]")
  95. $(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
  96. @$(call func_echo_success_status, "$@ -> [ Done ]")
  97. ### build-all-in-one : Build All in one Docker container for Apache APISIX
  98. .PHONY: build-all-in-one
  99. build-all-in-one:
  100. @$(call func_echo_status, "$@ -> [ Start ]")
  101. $(ENV_DOCKER) build -t $(IMAGE_NAME):whole -f ./all-in-one/apisix/Dockerfile .
  102. @$(call func_echo_success_status, "$@ -> [ Done ]")
  103. ### save-centos-tar : tar apache/apisix:xx-centos image
  104. .PHONY: save-centos-tar
  105. save-centos-tar:
  106. @$(call func_echo_status, "$@ -> [ Start ]")
  107. mkdir -p package
  108. $(ENV_DOCKER) save -o ./package/$(ENV_APISIX_TAR_NAME)-centos.tar $(ENV_APISIX_IMAGE_TAG_NAME)-centos
  109. @$(call func_echo_success_status, "$@ -> [ Done ]")
  110. ### save-alpine-tar : tar apache/apisix:xx-alpine image
  111. .PHONY: save-alpine-tar
  112. save-alpine-tar:
  113. @$(call func_echo_status, "$@ -> [ Start ]")
  114. mkdir -p package
  115. $(ENV_DOCKER) save -o ./package/$(ENV_APISIX_TAR_NAME)-alpine.tar $(ENV_APISIX_IMAGE_TAG_NAME)-alpine
  116. @$(call func_echo_success_status, "$@ -> [ Done ]")
  117. ### build-dashboard-centos : Build apache/dashboard:tag image on centos
  118. .PHONY: build-dashboard-centos
  119. build-dashboard-centos:
  120. @$(call func_echo_status, "$@ -> [ Start ]")
  121. $(ENV_DOCKER) build -t $(APISIX_DASHBOARD_IMAGE_NAME):$(APISIX_DASHBOARD_VERSION) -f ./dashboard/Dockerfile.centos .
  122. @$(call func_echo_success_status, "$@ -> [ Done ]")
  123. ### build-dashboard-alpine : Build apache/dashboard:tag image on alpine
  124. .PHONY: build-dashboard-alpine
  125. build-dashboard-alpine:
  126. @$(call func_echo_status, "$@ -> [ Start ]")
  127. $(ENV_DOCKER) build -t $(APISIX_DASHBOARD_IMAGE_NAME):$(APISIX_DASHBOARD_VERSION) -f ./dashboard/Dockerfile.alpine .
  128. @$(call func_echo_success_status, "$@ -> [ Done ]")
  129. ### push-multiarch-dashbaord : Build and push multiarch apache/dashboard:tag image
  130. .PHONY: push-multiarch-dashbaord
  131. push-multiarch-dashbaord:
  132. @$(call func_echo_status, "$@ -> [ Start ]")
  133. $(ENV_DOCKER) buildx build --push \
  134. -t $(APISIX_DASHBOARD_IMAGE_NAME):$(APISIX_DASHBOARD_VERSION)-alpine \
  135. --build-arg APISIX_DASHBOARD_VERSION=release/$(APISIX_DASHBOARD_VERSION) \
  136. --platform linux/amd64,linux/arm64 \
  137. -f ./dashboard/Dockerfile.alpine .
  138. $(ENV_DOCKER) buildx build --push \
  139. -t $(APISIX_DASHBOARD_IMAGE_NAME):$(APISIX_DASHBOARD_VERSION)-centos \
  140. --build-arg APISIX_DASHBOARD_VERSION=release/$(APISIX_DASHBOARD_VERSION) \
  141. --platform linux/amd64,linux/arm64 \
  142. -f ./dashboard/Dockerfile.centos .
  143. $(ENV_DOCKER) buildx build --push \
  144. -t $(APISIX_DASHBOARD_IMAGE_NAME):latest \
  145. --build-arg APISIX_DASHBOARD_VERSION=release/$(APISIX_DASHBOARD_VERSION) \
  146. --platform linux/amd64,linux/arm64 \
  147. -f ./dashboard/Dockerfile.centos .
  148. @$(call func_echo_success_status, "$@ -> [ Done ]")
  149. ### save-dashboard-centos-tar : tar apache/apisix-dashboard:tag image
  150. .PHONY: save-dashboard-centos-tar
  151. save-dashboard-centos-tar:
  152. @$(call func_echo_status, "$@ -> [ Start ]")
  153. mkdir -p package
  154. $(ENV_DOCKER) save -o ./package/$(APISIX_DASHBOARD_IMAGE_TAR_NAME)_$(APISIX_DASHBOARD_VERSION)-centos.tar $(APISIX_DASHBOARD_IMAGE_NAME):$(APISIX_DASHBOARD_VERSION)
  155. @$(call func_echo_success_status, "$@ -> [ Done ]")
  156. ### save-dashboard-alpine-tar : tar apache/apisix-dashboard:tag image
  157. .PHONY: save-dashboard-alpine-tar
  158. save-dashboard-alpine-tar:
  159. @$(call func_echo_status, "$@ -> [ Start ]")
  160. mkdir -p package
  161. $(ENV_DOCKER) save -o ./package/$(APISIX_DASHBOARD_IMAGE_TAR_NAME)_$(APISIX_DASHBOARD_VERSION)-alpine.tar $(APISIX_DASHBOARD_IMAGE_NAME):$(APISIX_DASHBOARD_VERSION)
  162. @$(call func_echo_success_status, "$@ -> [ Done ]")
  163. ### help : Show Makefile rules
  164. .PHONY: help
  165. help:
  166. @$(call func_echo_success_status, "Makefile rules:")
  167. @echo
  168. @if [ '$(ENV_OS_NAME)' = 'darwin' ]; then \
  169. 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; \
  170. else \
  171. awk '{ if(match($$0, /^\s*#{3}\s*([^:]+)\s*:\s*(.*)$$/, res)){ printf(" make %-25s : %-10s\n", res[1], res[2]) } }' Makefile; \
  172. fi
  173. @echo