You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM registry.access.redhat.com/ubi9-micro:latest AS runtime
2
6
3
7
LABEL vendor="IBM"
4
8
LABEL summary="The agent in a general purpose container."
5
9
LABEL description="A container which holds the edge node agent, to be used in environments where there is no operating system package that can install the agent natively."
6
10
11
+
# Copy microdnf necessary files from the base stage
12
+
COPY --from=base /usr/bin/microdnf /usr/bin/
13
+
COPY --from=base /usr/bin/gpg /usr/bin/
14
+
COPY --from=base /usr/bin/gpg2 /usr/bin/
15
+
COPY --from=base /lib64 /lib64/
16
+
COPY --from=base /usr/lib64 /usr/lib64/
17
+
COPY --from=base /usr/lib/rpm /usr/lib/rpm/
18
+
COPY --from=base /etc/dnf /etc/dnf/
19
+
COPY --from=base /etc/rpm /etc/rpm/
20
+
COPY --from=base /etc/pki /etc/pki/
21
+
7
22
ARG DOCKER_VER=26.1.4
8
23
9
24
# The anax binary (secrets manager code) shells out to groupadd, groupdel (from shadow-utils), pkill (from procps-ng)
FROM registry.access.redhat.com/ubi9-micro:latest AS runtime
2
6
3
7
LABEL vendor="IBM"
4
8
LABEL summary="The agent in a general purpose container."
5
9
LABEL description="A container which holds the edge node agent, to be used in environments where there is no operating system package that can install the agent natively."
6
10
11
+
# Copy microdnf necessary files from the base stage
12
+
COPY --from=base /usr/bin/microdnf /usr/bin/
13
+
COPY --from=base /usr/bin/gpg /usr/bin/
14
+
COPY --from=base /usr/bin/gpg2 /usr/bin/
15
+
COPY --from=base /lib64 /lib64/
16
+
COPY --from=base /usr/lib64 /usr/lib64/
17
+
COPY --from=base /usr/lib/rpm /usr/lib/rpm/
18
+
COPY --from=base /etc/dnf /etc/dnf/
19
+
COPY --from=base /etc/rpm /etc/rpm/
20
+
COPY --from=base /etc/pki /etc/pki/
21
+
7
22
ARG DOCKER_VER=24.0.9
8
23
9
24
# The anax binary (secrets manager code) shells out to groupadd, groupdel (from shadow-utils), pkill (from procps-ng)
FROM registry.access.redhat.com/ubi9-micro:latest AS runtime
2
6
3
7
LABEL vendor="IBM"
4
8
LABEL summary="The agent in a general purpose container."
5
9
LABEL description="A container which holds the edge node agent, to be used in environments where there is no operating system package that can install the agent natively."
6
10
11
+
# Copy microdnf necessary files from the base stage
FROM registry.access.redhat.com/ubi9-micro:latest AS runtime
2
6
3
7
LABEL vendor="IBM"
4
8
LABEL summary="The agent in a general purpose container."
5
9
LABEL description="A container which holds the edge node agent, to be used in environments where there is no operating system package that can install the agent natively."
6
10
11
+
# Copy microdnf necessary files from the base stage
12
+
COPY --from=base /usr/bin/microdnf /usr/bin/
13
+
COPY --from=base /usr/bin/gpg /usr/bin/
14
+
COPY --from=base /usr/bin/gpg2 /usr/bin/
15
+
COPY --from=base /lib64 /lib64/
16
+
COPY --from=base /usr/lib64 /usr/lib64/
17
+
COPY --from=base /usr/lib/rpm /usr/lib/rpm/
18
+
COPY --from=base /etc/dnf /etc/dnf/
19
+
COPY --from=base /etc/rpm /etc/rpm/
20
+
COPY --from=base /etc/pki /etc/pki/
21
+
7
22
ARG DOCKER_VER=18.06.3-ce
8
23
9
24
# The anax binary (secrets manager code) shells out to groupadd, groupdel (from shadow-utils), pkill (from procps-ng)
0 commit comments