├── .github └── workflows │ ├── package-apisix-dashboard-deb-ubuntu20.04.yml │ ├── package-apisix-deb-ubuntu20.04.yml │ ├── package-apisix-rpm-ubi.yml │ ├── package-apisix-runtime-deb-openresty-1.21.yml │ ├── package-apisix-runtime-deb-ubuntu20.04.yml │ ├── package-apisix-runtime-rpm-ubi.yml │ ├── publish-deb.yml │ ├── publish.yml │ ├── push-apisix-base-image.yml │ └── push-apisix-runtime-image.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── conf └── openssl3 │ └── openssl.cnf ├── dockerfiles ├── Dockerfile.apisix-base.apk ├── Dockerfile.apisix-base.deb ├── Dockerfile.apisix-base.rpm ├── Dockerfile.apisix-runtime.deb ├── Dockerfile.apisix-runtime.rpm ├── Dockerfile.apisix.deb ├── Dockerfile.apisix.rpm ├── Dockerfile.dashboard.deb ├── Dockerfile.dashboard.rpm ├── Dockerfile.fpm ├── Dockerfile.package.apisix ├── Dockerfile.package.apisix-base ├── Dockerfile.package.apisix-dashboard └── Dockerfile.package.apisix-runtime ├── output └── .gitignore ├── package-apisix-base.sh ├── package-apisix-dashboard.sh ├── package-apisix-runtime.sh ├── package-apisix.sh ├── post-install-apisix-base.sh ├── post-install-apisix-runtime.sh ├── test └── apisix │ ├── Dockerfile.test.apisix.arm64.ubuntu24.04 │ ├── Dockerfile.test.apisix.deb.ubuntu24.04 │ └── config.yaml ├── usr └── lib │ └── systemd │ └── system │ ├── apisix-dashboard.service │ ├── apisix.service │ └── openresty.service └── utils ├── build-common.sh ├── determine-dist.sh ├── install-common.sh ├── publish-deb.sh └── publish-rpm.sh /.github/workflows/package-apisix-dashboard-deb-ubuntu20.04.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/.github/workflows/package-apisix-dashboard-deb-ubuntu20.04.yml -------------------------------------------------------------------------------- /.github/workflows/package-apisix-deb-ubuntu20.04.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/.github/workflows/package-apisix-deb-ubuntu20.04.yml -------------------------------------------------------------------------------- /.github/workflows/package-apisix-rpm-ubi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/.github/workflows/package-apisix-rpm-ubi.yml -------------------------------------------------------------------------------- /.github/workflows/package-apisix-runtime-deb-openresty-1.21.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/.github/workflows/package-apisix-runtime-deb-openresty-1.21.yml -------------------------------------------------------------------------------- /.github/workflows/package-apisix-runtime-deb-ubuntu20.04.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/.github/workflows/package-apisix-runtime-deb-ubuntu20.04.yml -------------------------------------------------------------------------------- /.github/workflows/package-apisix-runtime-rpm-ubi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/.github/workflows/package-apisix-runtime-rpm-ubi.yml -------------------------------------------------------------------------------- /.github/workflows/publish-deb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/.github/workflows/publish-deb.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/push-apisix-base-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/.github/workflows/push-apisix-base-image.yml -------------------------------------------------------------------------------- /.github/workflows/push-apisix-runtime-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/.github/workflows/push-apisix-runtime-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/README.md -------------------------------------------------------------------------------- /conf/openssl3/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/conf/openssl3/openssl.cnf -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.apisix-base.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/dockerfiles/Dockerfile.apisix-base.apk -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.apisix-base.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/dockerfiles/Dockerfile.apisix-base.deb -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.apisix-base.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/dockerfiles/Dockerfile.apisix-base.rpm -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.apisix-runtime.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/dockerfiles/Dockerfile.apisix-runtime.deb -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.apisix-runtime.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/dockerfiles/Dockerfile.apisix-runtime.rpm -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.apisix.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/dockerfiles/Dockerfile.apisix.deb -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.apisix.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/dockerfiles/Dockerfile.apisix.rpm -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.dashboard.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/dockerfiles/Dockerfile.dashboard.deb -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.dashboard.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/dockerfiles/Dockerfile.dashboard.rpm -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.fpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/dockerfiles/Dockerfile.fpm -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.package.apisix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/dockerfiles/Dockerfile.package.apisix -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.package.apisix-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/dockerfiles/Dockerfile.package.apisix-base -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.package.apisix-dashboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/dockerfiles/Dockerfile.package.apisix-dashboard -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.package.apisix-runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/dockerfiles/Dockerfile.package.apisix-runtime -------------------------------------------------------------------------------- /output/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/output/.gitignore -------------------------------------------------------------------------------- /package-apisix-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/package-apisix-base.sh -------------------------------------------------------------------------------- /package-apisix-dashboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/package-apisix-dashboard.sh -------------------------------------------------------------------------------- /package-apisix-runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/package-apisix-runtime.sh -------------------------------------------------------------------------------- /package-apisix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/package-apisix.sh -------------------------------------------------------------------------------- /post-install-apisix-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/post-install-apisix-base.sh -------------------------------------------------------------------------------- /post-install-apisix-runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/post-install-apisix-runtime.sh -------------------------------------------------------------------------------- /test/apisix/Dockerfile.test.apisix.arm64.ubuntu24.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/test/apisix/Dockerfile.test.apisix.arm64.ubuntu24.04 -------------------------------------------------------------------------------- /test/apisix/Dockerfile.test.apisix.deb.ubuntu24.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/test/apisix/Dockerfile.test.apisix.deb.ubuntu24.04 -------------------------------------------------------------------------------- /test/apisix/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/test/apisix/config.yaml -------------------------------------------------------------------------------- /usr/lib/systemd/system/apisix-dashboard.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/usr/lib/systemd/system/apisix-dashboard.service -------------------------------------------------------------------------------- /usr/lib/systemd/system/apisix.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/usr/lib/systemd/system/apisix.service -------------------------------------------------------------------------------- /usr/lib/systemd/system/openresty.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/usr/lib/systemd/system/openresty.service -------------------------------------------------------------------------------- /utils/build-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/utils/build-common.sh -------------------------------------------------------------------------------- /utils/determine-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/utils/determine-dist.sh -------------------------------------------------------------------------------- /utils/install-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/utils/install-common.sh -------------------------------------------------------------------------------- /utils/publish-deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/utils/publish-deb.sh -------------------------------------------------------------------------------- /utils/publish-rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/api7/apisix-build-tools/HEAD/utils/publish-rpm.sh --------------------------------------------------------------------------------