From fec7b5c4cc6f470fc8a2db7768e48f25488a08ff Mon Sep 17 00:00:00 2001 From: Peter Xu Date: Mon, 21 Aug 2023 12:58:23 -0400 Subject: [PATCH] W-13897522: Fix build --- carbonj.service/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/carbonj.service/Dockerfile b/carbonj.service/Dockerfile index 93a8d711..99727261 100644 --- a/carbonj.service/Dockerfile +++ b/carbonj.service/Dockerfile @@ -26,7 +26,7 @@ RUN yum update -y && \ RUN yum install -y gcc-c++ gcc make libtool automake autoconf make python3-devel RUN rpm --import http://repos.azulsystems.com/RPM-GPG-KEY-azulsystems && \ - curl -o /etc/yum.repos.d/zulu.repo http://repos.azulsystems.com/rhel/zulu.repo && \ + curl -L -o /etc/yum.repos.d/zulu.repo http://repos.azulsystems.com/rhel/zulu.repo && \ yum update -y && \ yum install -y zulu-11 \ python3 \ @@ -35,7 +35,7 @@ RUN rpm --import http://repos.azulsystems.com/RPM-GPG-KEY-azulsystems && \ yum clean all # Install aiohttp required by the script -RUN pip3 install aiohttp +RUN pip3 install --upgrade pip && pip3 install aiohttp # Ensure crontab starts RUN /sbin/chkconfig crond on && \