You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by sp...@apache.org on 2022/12/30 02:42:19 UTC

[apisix-docker] branch master updated: feat: release APISIX 3.1.0 (#396)

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

spacewander 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 378b60d  feat: release APISIX 3.1.0 (#396)
378b60d is described below

commit 378b60d208cfab8404abcf8db200add4a44e5715
Author: 罗泽轩 <sp...@gmail.com>
AuthorDate: Fri Dec 30 10:42:14 2022 +0800

    feat: release APISIX 3.1.0 (#396)
---
 .github/workflows/apisix_push_docker_hub.yaml | 2 +-
 Makefile                                      | 4 ++--
 all-in-one/apisix/Dockerfile                  | 3 +--
 centos/Dockerfile                             | 2 +-
 debian/Dockerfile                             | 2 +-
 5 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/.github/workflows/apisix_push_docker_hub.yaml b/.github/workflows/apisix_push_docker_hub.yaml
index 000f1c7..803fe92 100644
--- a/.github/workflows/apisix_push_docker_hub.yaml
+++ b/.github/workflows/apisix_push_docker_hub.yaml
@@ -13,7 +13,7 @@ jobs:
           - centos
           - debian
     env:
-      APISIX_DOCKER_TAG: 3.0.0-${{ matrix.platform }}
+      APISIX_DOCKER_TAG: 3.1.0-${{ matrix.platform }}
 
     steps:
       - name: Check out the repo
diff --git a/Makefile b/Makefile
index 0114e54..dedfd09 100644
--- a/Makefile
+++ b/Makefile
@@ -21,8 +21,8 @@ SHELL := bash
 
 
 # APISIX ARGS
-APISIX_VERSION ?= 3.0.0
-MAX_APISIX_VERSION ?= 3.0.0
+APISIX_VERSION ?= 3.1.0
+MAX_APISIX_VERSION ?= 3.1.0
 IMAGE_NAME = apache/apisix
 IMAGE_TAR_NAME = apache_apisix
 
diff --git a/all-in-one/apisix/Dockerfile b/all-in-one/apisix/Dockerfile
index 00efb52..ef44d50 100644
--- a/all-in-one/apisix/Dockerfile
+++ b/all-in-one/apisix/Dockerfile
@@ -16,11 +16,10 @@
 #
 
 ARG ENABLE_PROXY=false
-ARG APISIX_VERSION=3.0.0
 ARG ETCD_VERSION=v3.5.4
 
 # Build Apache APISIX
-FROM apache/apisix:${APISIX_VERSION}-debian
+FROM apache/apisix:latest
 
 
 ARG ETCD_VERSION
diff --git a/centos/Dockerfile b/centos/Dockerfile
index 041860a..7cf4bb9 100644
--- a/centos/Dockerfile
+++ b/centos/Dockerfile
@@ -17,7 +17,7 @@
 
 FROM centos:7
 
-ARG APISIX_VERSION=3.0.0
+ARG APISIX_VERSION=3.1.0
 LABEL apisix_version="${APISIX_VERSION}"
 
 RUN yum install -y https://repos.apiseven.com/packages/centos/apache-apisix-repo-1.0-1.noarch.rpm \
diff --git a/debian/Dockerfile b/debian/Dockerfile
index 07f2f3b..95b0849 100644
--- a/debian/Dockerfile
+++ b/debian/Dockerfile
@@ -17,7 +17,7 @@
 
 FROM debian:bullseye-slim
 
-ARG APISIX_VERSION=3.0.0
+ARG APISIX_VERSION=3.1.0
 
 RUN set -ex; \
     arch=$(dpkg --print-architecture); \