Makefile 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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.1
  21. IMAGE_NAME = apache/apisix
  22. IMAGE_TAR_NAME = apache_apisix
  23. APISIX_DASHBOARD_VERSION ?= 2.9.0
  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-local : Build apache/apisix:xx-alpine-local image
  60. # Actually it is not build on certain version but on local code
  61. # Use this name (in the same patterns with others) for convenient CI
  62. .PHONY: build-on-alpine-local
  63. build-on-alpine-local:
  64. @$(call func_echo_status, "$@ -> [ Start ]")
  65. $(ENV_DOCKER) build -t $(ENV_APISIX_IMAGE_TAG_NAME)-alpine-local --build-arg APISIX_PATH=${APISIX_PATH} -f ./alpine-local/Dockerfile .
  66. @$(call func_echo_success_status, "$@ -> [ Done ]")
  67. ### push-on-centos : Push apache/apisix:xx-centos image
  68. # centos not support multiarch since it reply on x86 rpm package
  69. .PHONY: push-on-centos
  70. push-on-centos:
  71. @$(call func_echo_status, "$@ -> [ Start ]")
  72. $(ENV_DOCKER) push $(ENV_APISIX_IMAGE_TAG_NAME)-centos
  73. $(ENV_DOCKER) build -t $(IMAGE_NAME):latest -f ./centos/Dockerfile .
  74. $(ENV_DOCKER) push $(IMAGE_NAME):latest
  75. @$(call func_echo_success_status, "$@ -> [ Done ]")
  76. ### push-on-alpine : Push apache/apisix:xx-alpine image
  77. .PHONY: push-multiarch-on-alpine
  78. push-multiarch-on-alpine:
  79. @$(call func_echo_status, "$@ -> [ Start ]")
  80. $(ENV_DOCKER) buildx build --push \
  81. -t $(ENV_APISIX_IMAGE_TAG_NAME)-alpine \
  82. --platform linux/amd64,linux/arm64 \
  83. -f ./alpine/Dockerfile .
  84. @$(call func_echo_success_status, "$@ -> [ Done ]")
  85. ### build-on-alpine-cn : Build apache/apisix:xx-alpine image (for chinese)
  86. .PHONY: build-on-alpine-cn
  87. build-on-alpine-cn:
  88. @$(call func_echo_status, "$@ -> [ Start ]")
  89. $(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
  90. @$(call func_echo_success_status, "$@ -> [ Done ]")
  91. ### build-all-in-one : Build All in one Docker container for Apache APISIX
  92. .PHONY: build-all-in-one
  93. build-all-in-one:
  94. @$(call func_echo_status, "$@ -> [ Start ]")
  95. $(ENV_DOCKER) build -t $(IMAGE_NAME):whole -f ./all-in-one/apisix/Dockerfile .
  96. @$(call func_echo_success_status, "$@ -> [ Done ]")
  97. ### save-centos-tar : tar apache/apisix:xx-centos image
  98. .PHONY: save-centos-tar
  99. save-centos-tar:
  100. @$(call func_echo_status, "$@ -> [ Start ]")
  101. mkdir -p package
  102. $(ENV_DOCKER) save -o ./package/$(ENV_APISIX_TAR_NAME)-centos.tar $(ENV_APISIX_IMAGE_TAG_NAME)-centos
  103. @$(call func_echo_success_status, "$@ -> [ Done ]")
  104. ### save-alpine-tar : tar apache/apisix:xx-alpine image
  105. .PHONY: save-alpine-tar
  106. save-alpine-tar:
  107. @$(call func_echo_status, "$@ -> [ Start ]")
  108. mkdir -p package
  109. $(ENV_DOCKER) save -o ./package/$(ENV_APISIX_TAR_NAME)-alpine.tar $(ENV_APISIX_IMAGE_TAG_NAME)-alpine
  110. @$(call func_echo_success_status, "$@ -> [ Done ]")
  111. ### build-dashboard : Build apache/dashboard:tag image
  112. .PHONY: build-dashboard
  113. build-dashboard:
  114. @$(call func_echo_status, "$@ -> [ Start ]")
  115. $(ENV_DOCKER) build -t $(APISIX_DASHBOARD_IMAGE_NAME):$(APISIX_DASHBOARD_VERSION) -f ./dashboard/Dockerfile .
  116. @$(call func_echo_success_status, "$@ -> [ Done ]")
  117. ### push-dashboard : Push apache/dashboard:tag image
  118. .PHONY: push-dashboard
  119. push-dashboard:
  120. @$(call func_echo_status, "$@ -> [ Start ]")
  121. $(ENV_DOCKER) push $(APISIX_DASHBOARD_IMAGE_NAME):$(APISIX_DASHBOARD_VERSION)
  122. $(ENV_DOCKER) build -t $(APISIX_DASHBOARD_IMAGE_NAME):latest -f ./dashboard/Dockerfile .
  123. $(ENV_DOCKER) push $(APISIX_DASHBOARD_IMAGE_NAME):latest
  124. @$(call func_echo_success_status, "$@ -> [ Done ]")
  125. ### save-dashboard-tar : tar apache/apisix-dashboard:tag image
  126. .PHONY: save-dashboard-tar
  127. save-dashboard-tar:
  128. @$(call func_echo_status, "$@ -> [ Start ]")
  129. mkdir -p package
  130. $(ENV_DOCKER) save -o ./package/$(APISIX_DASHBOARD_IMAGE_TAR_NAME)_$(APISIX_DASHBOARD_VERSION).tar $(APISIX_DASHBOARD_IMAGE_NAME):$(APISIX_DASHBOARD_VERSION)
  131. @$(call func_echo_success_status, "$@ -> [ Done ]")
  132. ### help : Show Makefile rules
  133. .PHONY: help
  134. help:
  135. @$(call func_echo_success_status, "Makefile rules:")
  136. @echo
  137. @if [ '$(ENV_OS_NAME)' = 'darwin' ]; then \
  138. 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; \
  139. else \
  140. awk '{ if(match($$0, /^\s*#{3}\s*([^:]+)\s*:\s*(.*)$$/, res)){ printf(" make %-25s : %-10s\n", res[1], res[2]) } }' Makefile; \
  141. fi
  142. @echo