You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
38
+
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
39
+
RUN apt-get update -y && apt-get install nodejs -y
40
+
41
+
RUN rm -rf /var/lib/apt/lists/* google-chrome-stable_${CHROME_VERSION}.0-1_amd64.deb
42
+
43
+
RUN mkdir /seltest
44
+
COPY dyn-proxy.js /seltest
45
+
COPY entrypoint_so.sh /
46
+
RUN chmod +x entrypoint_so.sh /seltest/dyn-proxy.js
RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
41
+
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
42
+
RUN apt-get update -y && apt-get install nodejs -y
43
+
44
+
RUN rm -rf /var/lib/apt/lists/* firefox-${FIREFOX_VERSION}.tar.bz2
45
+
46
+
RUN mkdir /seltest
47
+
COPY dyn-proxy.js /seltest
48
+
COPY entrypoint_so.sh /
49
+
RUN chmod +x entrypoint_so.sh /seltest/dyn-proxy.js
For direct execution for RPA (selenium), we just need to specify a simple config.xml(any name .xml) file with the contents as follows, on the command line,
0 commit comments