File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ ARG COREUTILS_VERSION=9.5-r1
22
22
ARG GETTEXT_VERSION=0.22.5-r0
23
23
24
24
# renovate: datasource=repology depName=alpine_3_20/openssl
25
- ARG OPENSSL_VERSION=3.3.2-r0
25
+ ARG OPENSSL_VERSION=3.3.2-r1
26
26
27
27
# renovate: datasource=repology depName=alpine_3_20/xmlstarlet
28
28
ARG XMLSTARLET_VERSION=1.6.1-r2
@@ -36,6 +36,9 @@ ARG BIND_TOOLS_VERSION=9.18.27-r0
36
36
# renovate: datasource=repology depName=alpine_3_20/inetutils-telnet
37
37
ARG INETUTILS_VERSION=2.5-r0
38
38
39
+ # renovate: datasource=github-tags depName=openSUSE/catatonit extractVersion=^v(?<version>.*)$
40
+ ARG CATATONIT_VERSION=0.2.0
41
+
39
42
RUN apk add --no-cache \
40
43
bash==${BASH_VERSION} \
41
44
curl==${CURL_VERSION} \
@@ -50,5 +53,14 @@ RUN apk add --no-cache \
50
53
inetutils-telnet==${INETUTILS_VERSION} \
51
54
&& rm -rf /var/cache/apk/*
52
55
56
+ # download and install yq from GitHub
53
57
RUN wget -O /usr/local/bin/yq https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/yq_linux_amd64 && \
54
58
chmod +x /usr/local/bin/yq
59
+
60
+ # download and install catatonit from GitHub
61
+ ADD https://github.com/openSUSE/catatonit/releases/download/v${CATATONIT_VERSION}/catatonit.x86_64 /usr/bin/catatonit
62
+ RUN chmod +x /usr/bin/catatonit
63
+
64
+ ENTRYPOINT ["/usr/bin/catatonit" , "--" ]
65
+ CMD [ "-P" ]
66
+
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ alpine linux (3.20.0) with following components:
4
4
5
5
- bash (5.2.26-r0)
6
6
- bind-tools (9.18.24-r1)
7
+ - catatonit (v0.2.0)
7
8
- coreutils (9.5-r1)
8
9
- curl (8.10.1-r0)
9
10
- gettext (0.22.5-r0)
You can’t perform that action at this time.
0 commit comments