Skip to content

Commit 932b238

Browse files
authored
Merge branch 'main' into ppc64le-support
2 parents 36f49f3 + e420701 commit 932b238

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

base/ubi9/Dockerfile

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ RUN dnf -y reinstall shadow-utils && \
3737
dnf clean all
3838

3939
# Download and install gh-cli depending on the architecture.
40-
# See release page for details https://github.com/cli/cli/releases/tag/v2.78.0
40+
# See release page for details https://github.com/cli/cli/releases/tag/v2.83.2
4141
RUN \
4242
TEMP_DIR="$(mktemp -d)" && cd "${TEMP_DIR}" && \
43-
GH_VERSION="2.78.0" && \
43+
GH_VERSION="2.83.2" && \
4444
case "$TARGETARCH" in \
4545
amd64) GH_ARCH="linux_amd64" ;; \
4646
arm64) GH_ARCH="linux_arm64" ;; \
@@ -64,7 +64,7 @@ RUN \
6464
cd - && rm -rf "${TEMP_DIR}"
6565

6666
# Download and install ripgrep depending on the architecture.
67-
# See release page for details https://github.com/BurntSushi/ripgrep/releases/tag/13.0.0
67+
# See release page for details https://github.com/BurntSushi/ripgrep/releases/tag/15.1.0
6868
RUN set -e; \
6969
case "$TARGETARCH" in \
7070
ppc64le) \
@@ -80,7 +80,7 @@ RUN set -e; \
8080
esac; \
8181
TEMP_DIR="$(mktemp -d)"; \
8282
cd "${TEMP_DIR}"; \
83-
RG_VERSION="13.0.0"; \
83+
RG_VERSION="15.1.0"; \
8484
RG_TGZ="ripgrep-${RG_VERSION}-${RG_ARCH}.tar.gz"; \
8585
RG_TGZ_URL="https://github.com/BurntSushi/ripgrep/releases/download/${RG_VERSION}/${RG_TGZ}"; \
8686
echo "Downloading ${RG_TGZ_URL} ..."; \
@@ -100,7 +100,7 @@ RUN set -e; \
100100
rm -rf "${TEMP_DIR}"
101101

102102
# Download and install bat depending on the architecture.
103-
# See release page for details https://github.com/sharkdp/bat/releases/tag/v0.18.3
103+
# See release page for details https://github.com/sharkdp/bat/releases/tag/v0.26.0
104104
RUN set -e; \
105105
case "$TARGETARCH" in \
106106
ppc64le) \
@@ -116,7 +116,7 @@ RUN set -e; \
116116
esac; \
117117
TEMP_DIR="$(mktemp -d)"; \
118118
cd "${TEMP_DIR}"; \
119-
BAT_VERSION="0.18.3"; \
119+
BAT_VERSION="v0.26.0"; \
120120
BAT_TGZ="bat-v${BAT_VERSION}-${BAT_ARCH}.tar.gz"; \
121121
BAT_TGZ_URL="https://github.com/sharkdp/bat/releases/download/v${BAT_VERSION}/${BAT_TGZ}"; \
122122
echo "Downloading ${BAT_TGZ_URL} ..."; \
@@ -136,7 +136,7 @@ RUN set -e; \
136136
rm -rf "${TEMP_DIR}"
137137

138138
# Download and install fd depending on the architecture.
139-
# See release page for details https://github.com/sharkdp/fd/releases/tag/v8.7.0
139+
# See release page for details https://github.com/sharkdp/fd/releases/tag/v10.3.0
140140
RUN set -e; \
141141
case "$TARGETARCH" in \
142142
ppc64le) \
@@ -152,7 +152,7 @@ RUN set -e; \
152152
esac; \
153153
TEMP_DIR="$(mktemp -d)"; \
154154
cd "${TEMP_DIR}"; \
155-
FD_VERSION="8.7.0"; \
155+
FD_VERSION="10.3.0"; \
156156
FD_TGZ="fd-v${FD_VERSION}-${FD_ARCH}.tar.gz"; \
157157
FD_TGZ_URL="https://github.com/sharkdp/fd/releases/download/v${FD_VERSION}/${FD_TGZ}"; \
158158
echo "Downloading ${FD_TGZ_URL} ..."; \
@@ -192,8 +192,8 @@ RUN mkdir -p /var/lib/shared/overlay-images /var/lib/shared/overlay-layers; \
192192
touch /var/lib/shared/overlay-layers/layers.lock
193193

194194
# Add kubedock
195-
# See release page for details https://github.com/joyrex2001/kubedock/releases/tag/0.18.2
196-
ENV KUBEDOCK_VERSION=0.18.2
195+
# See release page for details https://github.com/joyrex2001/kubedock/releases/tag/0.19.0
196+
ENV KUBEDOCK_VERSION=0.19.0
197197
ENV KUBECONFIG=/home/user/.kube/config
198198
RUN set -e; \
199199
case "$TARGETARCH" in \
@@ -263,4 +263,4 @@ ENV HOME=/home/user
263263
WORKDIR /projects
264264
# /usr/libexec/podman/catatonit is used to reap zombie processes
265265
ENTRYPOINT ["/usr/libexec/podman/catatonit","--","/entrypoint.sh"]
266-
CMD ["tail", "-f", "/dev/null"]
266+
CMD ["tail", "-f", "/dev/null"]

0 commit comments

Comments
 (0)