You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
ARG ZT_NAME |
|
FROM 084037375216.dkr.ecr.us-east-2.amazonaws.com/${ZT_NAME}-builder as builder |
|
WORKDIR /root/rpmbuild/BUILD |
|
COPY . . |
|
RUN make redhat |
|
|
|
FROM scratch AS export |
|
ARG ZT_NAME |
|
COPY --from=builder /root/rpmbuild/RPMS/*/*.rpm ./${ZT_NAME}/
|
|
|