@@ -9,9 +9,9 @@ RUN curl -fsSL https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key a
99
1010# Latest Ubuntu Google Chrome, XVFB and JRE installs
1111# renovate: datasource=repology depName=aur/google-chrome versioning=loose
12- ARG GOOGLE_CHROME_STABLE_VERSION=119 .0.6045.159 -1
12+ ARG GOOGLE_CHROME_STABLE_VERSION=120 .0.6099.71 -1
1313# renovate: datasource=repology depName=debian_11/firefox-esr versioning=loose
14- ARG FIREFOX_ESR_VERSION=115.4 .0esr-1~deb11u1
14+ ARG FIREFOX_ESR_VERSION=115.5 .0esr-1~deb11u1
1515RUN apt-get update -qqy && \
1616 apt-get -qqy install --no-install-recommends \
1717 # xvfb=2:1.20.4-1 \
@@ -22,6 +22,12 @@ RUN apt-get update -qqy && \
2222 && rm -rf /var/lib/apt/lists/*
2323# RUN echo kernel.unprivileged_userns_clone = 1 | tee /etc/sysctl.d/00-local-userns.conf
2424
25+ # Registry Client used in build.js of LKE to download docker image and export it to tar
26+ # renovate: datasource=github-releases depName=regclient/regclient
27+ ARG REGCLIENT_VERSION=v0.5.5
28+ RUN curl -fsSL "https://github.com/regclient/regclient/releases/download/$REGCLIENT_VERSION/regctl-linux-amd64" > /usr/local/bin/regctl \
29+ && chmod 755 /usr/local/bin/regctl
30+
2531USER jenkins
2632
2733# renovate: datasource=github-releases depName=nvm-sh/nvm
@@ -36,6 +42,7 @@ RUN git clone --depth 1 --branch "$NVM_VERSION" https://github.com/nvm-sh/nvm.gi
3642 && nvm install 18.18.2 \
3743 && nvm install 14.21.3
3844
45+
3946# for loading profile, to make nvm available for sh
4047ENV ENV='$HOME/.profile'
4148# hadolint ignore=SC1091
0 commit comments