This is an automated email from the ASF dual-hosted git repository.

shreemaanabhishek pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-docker.git


The following commit(s) were added to refs/heads/master by this push:
     new f048da4  chore: release APISIX 3.10.0 (#565)
f048da4 is described below

commit f048da4632d41e7f7be4a057c49605fd3c109126
Author: Shreemaan Abhishek <[email protected]>
AuthorDate: Tue Sep 3 09:49:15 2024 +0545

    chore: release APISIX 3.10.0 (#565)
---
 .github/workflows/apisix-docker-example-test-standalone.yaml | 2 +-
 .github/workflows/apisix-docker-example-test.yaml            | 2 +-
 .github/workflows/apisix_push_docker_hub.yaml                | 2 +-
 Makefile                                                     | 4 ++--
 all-in-one/apisix-dashboard/Dockerfile                       | 2 +-
 debian-dev/Dockerfile                                        | 1 +
 debian/Dockerfile                                            | 2 +-
 docs/en/latest/build.md                                      | 2 +-
 example/docker-compose-arm64.yml                             | 2 +-
 example/docker-compose-standalone.yml                        | 2 +-
 example/docker-compose.yml                                   | 2 +-
 redhat/Dockerfile                                            | 2 +-
 12 files changed, 13 insertions(+), 12 deletions(-)

diff --git a/.github/workflows/apisix-docker-example-test-standalone.yaml 
b/.github/workflows/apisix-docker-example-test-standalone.yaml
index fdaae3f..0f1bae8 100644
--- a/.github/workflows/apisix-docker-example-test-standalone.yaml
+++ b/.github/workflows/apisix-docker-example-test-standalone.yaml
@@ -14,7 +14,7 @@ on:
       - 'release/apisix-2.15.**'
 
 env:
-  APISIX_VERSION: "3.9.0"
+  APISIX_VERSION: "3.10.0"
 
 jobs:
   prepare:
diff --git a/.github/workflows/apisix-docker-example-test.yaml 
b/.github/workflows/apisix-docker-example-test.yaml
index 10b77d9..d34d2aa 100644
--- a/.github/workflows/apisix-docker-example-test.yaml
+++ b/.github/workflows/apisix-docker-example-test.yaml
@@ -14,7 +14,7 @@ on:
       - 'release/apisix-2.15.**'
 
 env:
-  APISIX_VERSION: "3.9.0"
+  APISIX_VERSION: "3.10.0"
 
 jobs:
   prepare:
diff --git a/.github/workflows/apisix_push_docker_hub.yaml 
b/.github/workflows/apisix_push_docker_hub.yaml
index cc67383..dd80ff8 100644
--- a/.github/workflows/apisix_push_docker_hub.yaml
+++ b/.github/workflows/apisix_push_docker_hub.yaml
@@ -13,7 +13,7 @@ jobs:
           - debian
           - redhat
     env:
-      APISIX_DOCKER_TAG: 3.9.0-${{ matrix.platform }}
+      APISIX_DOCKER_TAG: 3.10.0-${{ matrix.platform }}
 
     steps:
       - name: Check out the repo
diff --git a/Makefile b/Makefile
index 0fd06a7..9369ba1 100644
--- a/Makefile
+++ b/Makefile
@@ -21,8 +21,8 @@ SHELL := bash
 
 
 # APISIX ARGS
-APISIX_VERSION ?= 3.9.0
-MAX_APISIX_VERSION ?= 3.9.0
+APISIX_VERSION ?= 3.10.0
+MAX_APISIX_VERSION ?= 3.10.0
 IMAGE_NAME = apache/apisix
 IMAGE_TAR_NAME = apache_apisix
 APISIX_REPO = https://github.com/apache/apisix
diff --git a/all-in-one/apisix-dashboard/Dockerfile 
b/all-in-one/apisix-dashboard/Dockerfile
index 0699ee9..1d7d121 100644
--- a/all-in-one/apisix-dashboard/Dockerfile
+++ b/all-in-one/apisix-dashboard/Dockerfile
@@ -21,7 +21,7 @@ ARG APISIX_VERSION=master
 ARG APISIX_DASHBOARD_VERSION=master
 
 # Build Apache APISIX
-FROM openresty/openresty:1.25.3.1-2-alpine-fat AS production-stage
+FROM openresty/openresty:1.25.3.2-0-alpine-fat AS production-stage
 
 ARG APISIX_VERSION
 ARG ENABLE_PROXY
diff --git a/debian-dev/Dockerfile b/debian-dev/Dockerfile
index 5cd9c3f..39aec91 100644
--- a/debian-dev/Dockerfile
+++ b/debian-dev/Dockerfile
@@ -34,6 +34,7 @@ RUN set -x \
         sudo \
         unzip \
         wget \
+        libyaml-dev \
     && curl 
https://raw.githubusercontent.com/apache/apisix/master/utils/linux-install-luarocks.sh
 -sL | bash - \
     && luarocks install 
https://raw.githubusercontent.com/apache/apisix/master/apisix-master-0.rockspec 
--tree=/usr/local/apisix/deps PCRE_DIR=/usr/local/openresty/pcre \
     && cp -v 
/usr/local/apisix/deps/lib/luarocks/rocks-5.1/apisix/master-0/bin/apisix 
/usr/bin/ \
diff --git a/debian/Dockerfile b/debian/Dockerfile
index c380951..eca89c5 100644
--- a/debian/Dockerfile
+++ b/debian/Dockerfile
@@ -17,7 +17,7 @@
 
 FROM debian:bullseye-slim
 
-ARG APISIX_VERSION=3.9.0
+ARG APISIX_VERSION=3.10.0
 
 RUN set -ex; \
     arch=$(dpkg --print-architecture); \
diff --git a/docs/en/latest/build.md b/docs/en/latest/build.md
index fe0fdf7..3538fea 100644
--- a/docs/en/latest/build.md
+++ b/docs/en/latest/build.md
@@ -43,7 +43,7 @@ Find an APISIX [release 
version](https://github.com/apache/apisix/releases) to b
 Build a Docker image from the release:
 
 ```shell
-APISIX_VERSION=3.9.0    # specify release version
+APISIX_VERSION=3.10.0   # specify release version
 DISTRO=debian           # debian, redhat
 make build-on-$DISTRO
 ```
diff --git a/example/docker-compose-arm64.yml b/example/docker-compose-arm64.yml
index 2a09091..b428132 100644
--- a/example/docker-compose-arm64.yml
+++ b/example/docker-compose-arm64.yml
@@ -19,7 +19,7 @@ version: "3"
 
 services:
   apisix:
-    image: apache/apisix:3.9.0-debian
+    image: apache/apisix:3.10.0-debian
     restart: always
     volumes:
       - ./apisix_conf/config.yaml:/usr/local/apisix/conf/config.yaml:ro
diff --git a/example/docker-compose-standalone.yml 
b/example/docker-compose-standalone.yml
index 039873f..f7f6e2b 100644
--- a/example/docker-compose-standalone.yml
+++ b/example/docker-compose-standalone.yml
@@ -19,7 +19,7 @@ version: "3"
 
 services:
   apisix:
-    image: apache/apisix:${APISIX_IMAGE_TAG:-3.9.0-debian}
+    image: apache/apisix:${APISIX_IMAGE_TAG:-3.10.0-debian}
     restart: always
     volumes:
       - 
./apisix_conf/apisix-standalone.yaml:/usr/local/apisix/conf/apisix.yaml:ro
diff --git a/example/docker-compose.yml b/example/docker-compose.yml
index 69f65c5..15f1ce2 100644
--- a/example/docker-compose.yml
+++ b/example/docker-compose.yml
@@ -19,7 +19,7 @@ version: "3"
 
 services:
   apisix:
-    image: apache/apisix:${APISIX_IMAGE_TAG:-3.9.0-debian}
+    image: apache/apisix:${APISIX_IMAGE_TAG:-3.10.0-debian}
     restart: always
     volumes:
       - ./apisix_conf/config.yaml:/usr/local/apisix/conf/config.yaml:ro
diff --git a/redhat/Dockerfile b/redhat/Dockerfile
index ca65c2e..f11fd0b 100644
--- a/redhat/Dockerfile
+++ b/redhat/Dockerfile
@@ -17,7 +17,7 @@
 
 FROM registry.access.redhat.com/ubi8/ubi:8.6
 
-ARG APISIX_VERSION=3.9.0
+ARG APISIX_VERSION=3.10.0
 LABEL apisix_version="${APISIX_VERSION}"
 COPY ./yum.repos.d/apache-apisix.repo /etc/yum.repos.d/apache-apisix.repo
 COPY ./yum.repos.d/openresty.repo /etc/yum.repos.d/openresty.repo

Reply via email to