We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cd0e4bb + 393e96a commit f33b3caCopy full SHA for f33b3ca
Dockerfile
@@ -5,6 +5,13 @@ RUN --mount=target=/src,rw make rpm && \
5
mkdir /out && \
6
cp -r /src/rpmbuild/RPMS/x86_64/*.rpm /out/
7
8
+FROM mcr.microsoft.com/azurelinux/base/core:3.0 as azl3
9
+RUN tdnf install -y rpm-build make python3-devel
10
+WORKDIR /src
11
+RUN --mount=target=/src,rw make rpm && \
12
+ mkdir /out && \
13
+ cp -r /src/rpmbuild/RPMS/x86_64/*.rpm /out/
14
+
15
FROM registry.access.redhat.com/ubi9:latest as el9
16
RUN yum install -y rpm-build make python3-devel
17
WORKDIR /src
@@ -21,5 +28,6 @@ RUN --mount=target=/src,rw make rpm && \
21
28
22
29
FROM scratch
23
30
COPY --from=cm2 /out/* /
31
+COPY --from=azl3 /out/* /
24
32
COPY --from=el8 /out/* /
25
33
COPY --from=el9 /out/* /
0 commit comments