This is an automated email from the ASF dual-hosted git repository.
ericholguin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git
The following commit(s) were added to refs/heads/master by this push:
new ecbee22622 Only require cjose package on RHEL 8 and above (#7703)
ecbee22622 is described below
commit ecbee22622fb9e530906ad918fd3110388d5a1db
Author: Zach Hoffman <[email protected]>
AuthorDate: Mon Aug 7 11:24:28 2023 -0600
Only require cjose package on RHEL 8 and above (#7703)
---
infrastructure/cdn-in-a-box/cache/Dockerfile | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/infrastructure/cdn-in-a-box/cache/Dockerfile
b/infrastructure/cdn-in-a-box/cache/Dockerfile
index 29ed97d923..c1c129415b 100644
--- a/infrastructure/cdn-in-a-box/cache/Dockerfile
+++ b/infrastructure/cdn-in-a-box/cache/Dockerfile
@@ -43,13 +43,12 @@ RUN dnf -y install epel-release && \
additional_packages='perl(URI)' || \
exit 1; \
else \
- additional_packages='' || \
+ # cjose is required by the ATS TSB RPM
+ additional_packages='cjose' || \
exit 1; \
fi && \
dnf -y install \
brotli \
- # cjose is required by the ATS TSB RPM
- cjose \
# find is required by to-access.sh
findutils \
GeoIP \