github.com/lineaje-labs/syft@v0.98.1-0.20231227153149-9e393f60ff1b/Dockerfile.debug (about)

     1  FROM gcr.io/distroless/static-debian11:debug@sha256:a0a404776dec98be120089ae42bbdfbe48c177921d856937d124d48eb8c0b951
     2  
     3  # create the /tmp dir, which is needed for image content cache
     4  WORKDIR /tmp
     5  
     6  COPY syft /
     7  
     8  ARG BUILD_DATE
     9  ARG BUILD_VERSION
    10  ARG VCS_REF
    11  ARG VCS_URL
    12  
    13  LABEL org.opencontainers.image.created=$BUILD_DATE
    14  LABEL org.opencontainers.image.title="syft"
    15  LABEL org.opencontainers.image.description="CLI tool and library for generating a Software Bill of Materials from container images and filesystems"
    16  LABEL org.opencontainers.image.source=$VCS_URL
    17  LABEL org.opencontainers.image.revision=$VCS_REF
    18  LABEL org.opencontainers.image.vendor="Anchore, Inc."
    19  LABEL org.opencontainers.image.version=$BUILD_VERSION
    20  LABEL org.opencontainers.image.licenses="Apache-2.0"
    21  LABEL io.artifacthub.package.readme-url="https://raw.githubusercontent.com/anchore/syft/main/README.md"
    22  LABEL io.artifacthub.package.logo-url="https://user-images.githubusercontent.com/5199289/136844524-1527b09f-c5cb-4aa9-be54-5aa92a6086c1.png"
    23  LABEL io.artifacthub.package.license="Apache-2.0"
    24  
    25  ENTRYPOINT ["/syft"]