Skip to content

Commit ca29de2

Browse files
Merge pull request #94 from Linkurious/develop
Release 0.0.36 [ci:run]
2 parents b3e2f4b + beabf26 commit ca29de2

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.0.35
2+
current_version = 0.0.36
33
commit = False
44
tag = False
55
serialize =

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.35
1+
0.0.36

Dockerfile

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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
1515
RUN 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+
2531
USER 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
4047
ENV ENV='$HOME/.profile'
4148
# hadolint ignore=SC1091

0 commit comments

Comments
 (0)