|
1 | 1 | # syntax=docker/dockerfile:1.3-labs |
2 | 2 |
|
3 | | -# https://registry.access.redhat.com/ubi9/ubi |
4 | | -FROM registry.access.redhat.com/ubi9/ubi:9.6-1747219013 |
| 3 | +# https://catalog.redhat.com/en/software/containers/ubi9/ubi/ |
| 4 | +FROM registry.access.redhat.com/ubi9/ubi:9.6-1756915113 |
5 | 5 |
|
6 | 6 | ARG TARGETARCH |
7 | 7 | LABEL maintainer="Red Hat, Inc." |
@@ -37,11 +37,11 @@ RUN dnf -y reinstall shadow-utils && \ |
37 | 37 | dnf clean all |
38 | 38 |
|
39 | 39 | # Download and install gh-cli depending on the architecture. |
40 | | -# See release page for details https://github.com/cli/cli/releases/tag/v2.73.0 |
| 40 | +# See release page for details https://github.com/cli/cli/releases/tag/v2.78.0 |
41 | 41 | RUN \ |
42 | 42 | TEMP_DIR="$(mktemp -d)"; \ |
43 | 43 | cd "${TEMP_DIR}"; \ |
44 | | - GH_VERSION="2.73.0"; \ |
| 44 | + GH_VERSION="2.78.0"; \ |
45 | 45 | GH_ARCH="linux_$TARGETARCH"; \ |
46 | 46 | GH_TGZ="gh_${GH_VERSION}_${GH_ARCH}.tar.gz"; \ |
47 | 47 | GH_TGZ_URL="https://github.com/cli/cli/releases/download/v${GH_VERSION}/${GH_TGZ}"; \ |
@@ -136,8 +136,8 @@ RUN mkdir -p /var/lib/shared/overlay-images /var/lib/shared/overlay-layers; \ |
136 | 136 | touch /var/lib/shared/overlay-layers/layers.lock |
137 | 137 |
|
138 | 138 | # Add kubedock |
139 | | -# See release page for details https://github.com/joyrex2001/kubedock/releases/tag/0.18.1 |
140 | | -ENV KUBEDOCK_VERSION 0.18.1 |
| 139 | +# See release page for details https://github.com/joyrex2001/kubedock/releases/tag/0.18.2 |
| 140 | +ENV KUBEDOCK_VERSION 0.18.2 |
141 | 141 | ENV KUBECONFIG=/home/user/.kube/config |
142 | 142 | RUN KUBEDOCK_ARCH="linux_amd64" && \ |
143 | 143 | curl -L https://github.com/joyrex2001/kubedock/releases/download/${KUBEDOCK_VERSION}/kubedock_${KUBEDOCK_VERSION}_${KUBEDOCK_ARCH}.tar.gz | tar -C /usr/local/bin -xz --no-same-owner \ |
|
0 commit comments