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

[apisix-ingress-docker] branch main updated: chore: v1.5.0-rc1 (#6)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new ed1724b  chore: v1.5.0-rc1 (#6)
ed1724b is described below

commit ed1724be20c5ed348cbb62ba2f611c773268b9a7
Author: Jintao Zhang <zh...@gmail.com>
AuthorDate: Mon Aug 8 10:12:35 2022 +0800

    chore: v1.5.0-rc1 (#6)
    
    Signed-off-by: Jintao Zhang <zh...@gmail.com>
---
 Dockerfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 9df4811..1dfcda6 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -14,9 +14,9 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 #
-FROM golang:1.16 AS build-env
+FROM golang:1.18 AS build-env
 
-ARG INGRESS_VERSION=1.4.0
+ARG INGRESS_VERSION=1.5.0-rc1
 ARG ENABLE_PROXY=false
 
 LABEL ingress_version="${INGRESS_VERSION}"
@@ -32,7 +32,7 @@ RUN wget https://github.com/apache/apisix-ingress-controller/archive/${INGRESS_V
     && if [ "$ENABLE_PROXY" = "true" ] ; then go env -w GOPROXY=https://goproxy.cn,direct ; fi \
     && make build
 
-FROM alpine:3.13.5
+FROM alpine:3.16.1
 
 WORKDIR /ingress-apisix
 RUN apk add --no-cache ca-certificates libc6-compat \