This is an automated email from the ASF dual-hosted git repository.
jhg03a 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 091fedd6f5 Add install nodejs line to Dockerfile (#7258)
091fedd6f5 is described below
commit 091fedd6f5175507ead7b936481322793f5a7c9c
Author: Taylor Clayton Frey <[email protected]>
AuthorDate: Tue Dec 20 09:57:28 2022 -0700
Add install nodejs line to Dockerfile (#7258)
Co-authored-by: Taylor Frey <[email protected]>
---
infrastructure/cdn-in-a-box/traffic_portal_integration_test/Dockerfile | 1 +
1 file changed, 1 insertion(+)
diff --git
a/infrastructure/cdn-in-a-box/traffic_portal_integration_test/Dockerfile
b/infrastructure/cdn-in-a-box/traffic_portal_integration_test/Dockerfile
index 9c50e334cd..b22282f182 100644
--- a/infrastructure/cdn-in-a-box/traffic_portal_integration_test/Dockerfile
+++ b/infrastructure/cdn-in-a-box/traffic_portal_integration_test/Dockerfile
@@ -48,6 +48,7 @@ RUN if [[ "${RHEL_VERSION%%.*}" -eq 7 ]]; then \
FROM os-dependencies AS node-dependencies
# Download and install node
RUN curl -sL https://rpm.nodesource.com/setup_18.x | bash -
+RUN dnf install -y nodejs
RUN npm i -g webdriver-manager
FROM node-dependencies