This is an automated email from the ASF dual-hosted git repository. zrhoffman pushed a commit to branch asf-arm-runner in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git
commit 87a290547e0723e2dee24f0546e5e2d1458c23d5 Author: Zach Hoffman <[email protected]> AuthorDate: Thu Apr 4 19:46:44 2024 -0600 Use Alpine version 3.16 Alpine versions above 3.16 do not contain package libexecinfo-dev, which ATS needs. --- .github/containers/trafficserver-alpine/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/containers/trafficserver-alpine/Dockerfile b/.github/containers/trafficserver-alpine/Dockerfile index a6f2fd3116..759b402328 100644 --- a/.github/containers/trafficserver-alpine/Dockerfile +++ b/.github/containers/trafficserver-alpine/Dockerfile @@ -15,7 +15,7 @@ # specific language governing permissions and limitations # under the License. -FROM alpine:latest AS build-trafficserver +FROM alpine:3.16 AS build-trafficserver ARG ATS_VERSION ADD https://archive.apache.org/dist/trafficserver/trafficserver-${ATS_VERSION}.tar.bz2 /tmp/ RUN set -o errexit -o nounset -o xtrace; \ @@ -52,7 +52,7 @@ RUN set -o errexit -o nounset -o xtrace; \ cd ..; \ rm -r $dirname -FROM alpine:latest +FROM alpine:3.16 COPY --from=build-trafficserver /tmp/built/ / RUN apk add --no-cache \ # runtime dependencies
