@@ -90,9 +90,9 @@ COPY supervisord.conf /etc
9090RUN mkdir -p /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/supervisor \
9191 && touch /opt/selenium/config.toml \
9292 && chmod -R 777 /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/supervisor /etc/passwd \
93- && wget --no-verbose https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.7.0/selenium-server-4.7.1 .jar \
93+ && wget --no-verbose https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.7.0/selenium-server-4.7.2 .jar \
9494 -O /opt/selenium/selenium-server.jar \
95- && wget --no-verbose https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-http-jdk-client/4.7.1 /selenium-http-jdk-client-4.7.1 .jar \
95+ && wget --no-verbose https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-http-jdk-client/4.7.2 /selenium-http-jdk-client-4.7.2 .jar \
9696 -O /opt/selenium/selenium-http-jdk-client.jar \
9797 && chgrp -R 0 /opt/selenium ${HOME} /opt/selenium/assets /var/run/supervisor /var/log/supervisor \
9898 && chmod -R g=u /opt/selenium ${HOME} /opt/selenium/assets /var/run/supervisor /var/log/supervisor
@@ -101,12 +101,13 @@ RUN mkdir -p /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/su
101101# Download observability related jaegar jars and make them available in a separate directory
102102# so that the container can skip downloading them everytime it comes up
103103# =====
104- RUN if [ `arch` = "aarch64" ] || [ `arch` = "x86_64" ]; then \
105- curl -fL https://github.com/coursier/launchers/raw/master/cs-`arch`-pc-linux.gz | gzip -d > /tmp/cs \
104+ # RUN if [ `arch` = "aarch64" ] || [ `arch` = "x86_64" ]; then \
105+ # curl -fL https://github.com/coursier/launchers/raw/master/cs-`arch`-pc-linux.gz | gzip -d > /tmp/cs \
106+ RUN curl -fLo /tmp/cs https://github.com/coursier/launchers/raw/master/coursier \
106107 && chmod +x /tmp/cs \
107108 && mkdir -p /external_jars \
108- && chmod -R 777 /external_jars ; \
109- fi
109+ && chmod -R 777 /external_jars ;
110+ # fi
110111
111112RUN if [ -f "/tmp/cs" ]; then \
112113 /tmp/cs fetch --classpath --cache /external_jars io.opentelemetry:opentelemetry-exporter-jaeger:1.19.0 io.grpc:grpc-netty:1.50.2 > /external_jars/.classpath.txt ; \
0 commit comments