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 /work/build |
|
COPY . . |
|
RUN pwd |
|
RUN ls -la . |
|
RUN make clean |
|
RUN make debian |
|
RUN ls -ls /work |
|
|
|
FROM scratch AS export |
|
ARG ZT_NAME |
|
COPY --from=builder /work/*.deb ./${ZT_NAME}/
|
|
|