You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ki...@apache.org on 2022/08/11 00:47:39 UTC

[trafficserver-ingress-controller] branch master updated: Upgrade to alpine linux 3.14.8 (#138)

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

kichan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver-ingress-controller.git


The following commit(s) were added to refs/heads/master by this push:
     new 36b7556  Upgrade to alpine linux 3.14.8 (#138)
36b7556 is described below

commit 36b755646e2b498c26d9838159e2647992f1261f
Author: Kit Chan <ki...@apache.org>
AuthorDate: Wed Aug 10 17:47:35 2022 -0700

    Upgrade to alpine linux 3.14.8 (#138)
---
 Dockerfile | 8 ++++----
 README.md  | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 8b0d28e..0840c42 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -15,14 +15,14 @@
 # limitations under the License.
 #
 
-FROM alpine:3.14.7 as builder
+FROM alpine:3.14.8 as builder
 
 RUN apk add --no-cache --virtual .tools \
   bzip2 curl git automake libtool autoconf make sed file perl openrc openssl
 
 # ATS dependencies
 RUN apk add --no-cache --virtual .ats-build-deps \
-  build-base openssl-dev tcl-dev pcre-dev zlib-dev=1.2.12-r3 \
+  build-base openssl-dev tcl-dev pcre-dev zlib-dev \
   libexecinfo-dev linux-headers libunwind-dev \
   brotli-dev jansson-dev luajit-dev readline-dev geoip-dev 
 
@@ -118,7 +118,7 @@ RUN mkdir -p /opt/ats/var/run/redis/ \
 # set up ingress log location
 RUN mkdir -p /opt/ats/var/log/ingress/
 
-FROM alpine:3.14.7
+FROM alpine:3.14.8
 
 # essential library  
 RUN apk add --no-cache -U \
@@ -126,7 +126,7 @@ RUN apk add --no-cache -U \
     build-base \
     curl ca-certificates \
     pcre \
-    zlib=1.2.12-r3 \
+    zlib \
     openssl \
     brotli \
     jansson \
diff --git a/README.md b/README.md
index ef93a9a..6ad4401 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,7 @@ Card](https://goreportcard.com/badge/github.com/apache/trafficserver-ingress-con
 - [Development](https://github.com/apache/trafficserver-ingress-controller/blob/master/docs/DEVELOPMENT.md)
 
 ## Versions of Software Used
-- Alpine Linux 3.14.7
+- Alpine Linux 3.14.8
 - Apache Traffic Server 9.1.3
 - LuaJIT 2.0.4
 - Go (Version can be found in `GO_VERSION` file found at the base of this repository)