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/12/09 07:40:48 UTC

[apisix-ingress-docker] branch main updated: chore: bump 1.5.1 (#8)

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 b4472e0  chore: bump 1.5.1 (#8)
b4472e0 is described below

commit b4472e0e27310389b8a4500eeeeabdde9bc4b937
Author: Jintao Zhang <zh...@gmail.com>
AuthorDate: Fri Dec 9 15:40:44 2022 +0800

    chore: bump 1.5.1 (#8)
---
 Dockerfile | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 73b8c0f..ad8f5a6 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -16,11 +16,13 @@
 #
 FROM golang:1.19 AS build-env
 
-ARG INGRESS_VERSION=1.5.0
+ARG INGRESS_VERSION=1.5.1
 ARG ENABLE_PROXY=false
 
 LABEL ingress_version="${INGRESS_VERSION}"
-RUN rm -rf /etc/localtime \
+RUN apt-get update \
+    && apt-get install tzdata -y \
+    && rm -rf /etc/localtime \
     && ln -s /usr/share/zoneinfo/Hongkong /etc/localtime \
     && dpkg-reconfigure -f noninteractive tzdata
 
@@ -32,7 +34,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.16.2
+FROM alpine:3.17
 
 WORKDIR /ingress-apisix
 RUN apk add --no-cache ca-certificates libc6-compat \