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 2021/02/13 18:46:31 UTC

[trafficserver-ingress-controller] branch master updated: Fix the source file of ATS (#79)

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 d683bfc  Fix the source file of ATS (#79)
d683bfc is described below

commit d683bfc89408f9e6227fcf3f8283183c0ebe40e0
Author: Kit Chan <ki...@apache.org>
AuthorDate: Sat Feb 13 10:46:25 2021 -0800

    Fix the source file of ATS (#79)
    
    * Update Dockerfile
    
    * Update hwloc location
---
 Dockerfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 5a90f9f..f036508 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -26,9 +26,9 @@ RUN apk add --no-cache --virtual .ats-build-deps \
   libexecinfo-dev linux-headers libunwind-dev \
   brotli-dev jansson-dev luajit-dev readline-dev geoip-dev 
 
-RUN apk add --no-cache --virtual .ats-extra-build-deps --repository https://dl-cdn.alpinelinux.org/alpine/edge/testing hwloc-dev
+RUN apk add --no-cache --virtual .ats-extra-build-deps --repository https://dl-cdn.alpinelinux.org/alpine/edge/community hwloc-dev
 
-RUN curl -L https://www-us.apache.org/dist/trafficserver/trafficserver-9.0.0.tar.bz2 | bzip2 -dc | tar xf - \
+RUN curl -L https://downloads.apache.org/trafficserver/trafficserver-9.0.0.tar.bz2 | bzip2 -dc | tar xf - \
   && cd trafficserver-9.0.0/ \
   && autoreconf -if \
   && ./configure --enable-debug=yes \
@@ -133,7 +133,7 @@ RUN apk add -U \
     cpulimit \
     logrotate
 
-RUN apk add -U --repository https://dl-cdn.alpinelinux.org/alpine/edge/testing hwloc
+RUN apk add -U --repository https://dl-cdn.alpinelinux.org/alpine/edge/community hwloc
 
 # redis
 RUN mkdir -p /var/run/redis/ \