chore: bump 1.5.1 (#8)

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 @@
     && 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 \