This is an automated email from the ASF dual-hosted git repository.
kvn 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 929d620 feat: upgrade APISIX to 2.9 (#210)
929d620 is described below
commit 929d620d79088352b3f5106eb5fce101586430e6
Author: 罗泽轩 <[email protected]>
AuthorDate: Mon Aug 30 09:50:12 2021 +0800
feat: upgrade APISIX to 2.9 (#210)
---
.github/workflows/apisix-docker-test.yaml | 2 +-
Makefile | 2 +-
alpine/Dockerfile | 2 +-
centos/Dockerfile | 6 +++---
4 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/apisix-docker-test.yaml
b/.github/workflows/apisix-docker-test.yaml
index 991a05d..9d24f16 100644
--- a/.github/workflows/apisix-docker-test.yaml
+++ b/.github/workflows/apisix-docker-test.yaml
@@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
env:
APISIX_PATH: "./apisix-local"
- APISIX_DOCKER_TAG: 2.8-${{ matrix.platform }}
+ APISIX_DOCKER_TAG: 2.9-${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
diff --git a/Makefile b/Makefile
index 4de3cbb..1dc511c 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@
#
default: help
-APISIX_VERSION ?= 2.8
+APISIX_VERSION ?= 2.9
IMAGE_NAME = apache/apisix
IMAGE_TAR_NAME = apache_apisix
diff --git a/alpine/Dockerfile b/alpine/Dockerfile
index e9b6a30..97a853c 100644
--- a/alpine/Dockerfile
+++ b/alpine/Dockerfile
@@ -2,7 +2,7 @@ ARG ENABLE_PROXY=false
FROM openresty/openresty:1.19.3.1-alpine-fat AS production-stage
-ARG APISIX_VERSION=2.8
+ARG APISIX_VERSION=2.9
LABEL apisix_version="${APISIX_VERSION}"
ARG ENABLE_PROXY
diff --git a/centos/Dockerfile b/centos/Dockerfile
index 17e5543..c2ec5d0 100644
--- a/centos/Dockerfile
+++ b/centos/Dockerfile
@@ -1,12 +1,12 @@
FROM centos:7
-ARG APISIX_VERSION=2.8
+ARG APISIX_VERSION=2.9
LABEL apisix_version="${APISIX_VERSION}"
RUN yum -y install yum-utils\
&& yum-config-manager --add-repo
https://openresty.org/package/centos/openresty.repo \
- && yum install -y openresty which tzdata \
- && yum install -y
https://github.com/apache/apisix/releases/download/$APISIX_VERSION/apisix-$APISIX_VERSION-0.x86_64.rpm
\
+ && yum install -y pcre openresty which tzdata \
+ && yum install -y
https://github.com/apache/apisix/releases/download/$APISIX_VERSION/apisix-$APISIX_VERSION-0.el7.x86_64.rpm
\
&& yum clean all \
&& sed -i 's/PASS_MAX_DAYS\t99999/PASS_MAX_DAYS\t60/g' /etc/login.defs