mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
7 lines
209 B
Docker
7 lines
209 B
Docker
FROM alpine:3.17.1@sha256:93d5a28ff72d288d69b5997b8ba47396d2cbb62a72b5d87cd3351094b5d578a0 as tools
|
|
FROM scratch
|
|
COPY --from=tools /bin /bin
|
|
COPY --from=tools /lib /lib
|
|
ADD . .
|
|
RUN rm -rf file-1.txt /bin /lib
|