We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fc4f9ed + 66efbac commit 71d73c4Copy full SHA for 71d73c4
Dockerfile
@@ -1,6 +1,4 @@
1
-ARG BCI_IMAGE=registry.suse.com/bci/bci-base
2
ARG GO_IMAGE=rancher/hardened-build-base:v1.20.4b11
3
-FROM ${BCI_IMAGE} as bci
4
FROM ${GO_IMAGE} as builder
5
# setup required packages
6
RUN set -x && \
@@ -29,5 +27,5 @@ RUN if [ "${ARCH}" = "amd64" ]; then \
29
27
RUN install -s bin/* /usr/local/bin
30
28
RUN crictl --version
31
32
-FROM bci
+FROM scratch
33
COPY --from=builder /usr/local/bin/ /usr/local/bin/
README.md
@@ -1,7 +1,9 @@
-# rancher/hardened--crictl
+# rancher/hardened-crictl
## Build
```sh
TAG=v1.17.0 make
7
```
8
+
9
+This image is never used directly but consumed by the RKE2 image to include crictl
0 commit comments