mirror of
https://github.com/anchore/syft.git
synced 2026-02-12 02:26:42 +01:00
chore: migrate .goreleaser build to docker_v2
Signed-off-by: Christopher Phillips <32073428+spiffcs@users.noreply.github.com>
This commit is contained in:
parent
443de210ca
commit
61dff5de88
296
.goreleaser.yaml
296
.goreleaser.yaml
@ -73,252 +73,68 @@ brews:
|
|||||||
description: *description
|
description: *description
|
||||||
license: "Apache License 2.0"
|
license: "Apache License 2.0"
|
||||||
|
|
||||||
dockers:
|
dockers_v2:
|
||||||
# production images...
|
# production images (scratch base, root)
|
||||||
- image_templates:
|
- id: production
|
||||||
- anchore/syft:{{.Tag}}-amd64
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-amd64
|
|
||||||
goarch: amd64
|
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
use: buildx
|
ids: &docker-ids
|
||||||
build_flag_templates:
|
- linux-build
|
||||||
- "--platform=linux/amd64"
|
images: &docker-images
|
||||||
- "--build-arg=BUILD_DATE={{.Date}}"
|
- anchore/syft
|
||||||
- "--build-arg=BUILD_VERSION={{.Version}}"
|
- ghcr.io/anchore/syft
|
||||||
- "--build-arg=VCS_REF={{.FullCommit}}"
|
platforms: &docker-platforms
|
||||||
- "--build-arg=VCS_URL={{.GitURL}}"
|
- linux/amd64
|
||||||
|
- linux/arm64
|
||||||
|
- linux/ppc64le
|
||||||
|
- linux/s390x
|
||||||
|
labels: &docker-labels
|
||||||
|
"org.opencontainers.image.created": "{{.Date}}"
|
||||||
|
"org.opencontainers.image.title": "syft"
|
||||||
|
"org.opencontainers.image.description": "CLI tool and library for generating a Software Bill of Materials from container images and filesystems"
|
||||||
|
"org.opencontainers.image.source": "{{.GitURL}}"
|
||||||
|
"org.opencontainers.image.revision": "{{.FullCommit}}"
|
||||||
|
"org.opencontainers.image.vendor": "Anchore, Inc."
|
||||||
|
"org.opencontainers.image.version": "{{.Version}}"
|
||||||
|
"org.opencontainers.image.licenses": "Apache-2.0"
|
||||||
|
"io.artifacthub.package.readme-url": "https://raw.githubusercontent.com/anchore/syft/main/README.md"
|
||||||
|
"io.artifacthub.package.logo-url": "https://user-images.githubusercontent.com/5199289/136844524-1527b09f-c5cb-4aa9-be54-5aa92a6086c1.png"
|
||||||
|
"io.artifacthub.package.license": "Apache-2.0"
|
||||||
|
tags:
|
||||||
|
- latest
|
||||||
|
- "{{.Tag}}"
|
||||||
|
|
||||||
- image_templates:
|
# nonroot images
|
||||||
- anchore/syft:{{.Tag}}-arm64v8
|
- id: nonroot
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-arm64v8
|
|
||||||
goarch: arm64
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
use: buildx
|
|
||||||
build_flag_templates:
|
|
||||||
- "--platform=linux/arm64/v8"
|
|
||||||
- "--build-arg=BUILD_DATE={{.Date}}"
|
|
||||||
- "--build-arg=BUILD_VERSION={{.Version}}"
|
|
||||||
- "--build-arg=VCS_REF={{.FullCommit}}"
|
|
||||||
- "--build-arg=VCS_URL={{.GitURL}}"
|
|
||||||
|
|
||||||
- image_templates:
|
|
||||||
- anchore/syft:{{.Tag}}-ppc64le
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-ppc64le
|
|
||||||
goarch: ppc64le
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
use: buildx
|
|
||||||
build_flag_templates:
|
|
||||||
- "--platform=linux/ppc64le"
|
|
||||||
- "--build-arg=BUILD_DATE={{.Date}}"
|
|
||||||
- "--build-arg=BUILD_VERSION={{.Version}}"
|
|
||||||
- "--build-arg=VCS_REF={{.FullCommit}}"
|
|
||||||
- "--build-arg=VCS_URL={{.GitURL}}"
|
|
||||||
|
|
||||||
- image_templates:
|
|
||||||
- anchore/syft:{{.Tag}}-s390x
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-s390x
|
|
||||||
goarch: s390x
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
use: buildx
|
|
||||||
build_flag_templates:
|
|
||||||
- "--platform=linux/s390x"
|
|
||||||
- "--build-arg=BUILD_DATE={{.Date}}"
|
|
||||||
- "--build-arg=BUILD_VERSION={{.Version}}"
|
|
||||||
- "--build-arg=VCS_REF={{.FullCommit}}"
|
|
||||||
- "--build-arg=VCS_URL={{.GitURL}}"
|
|
||||||
|
|
||||||
# nonroot images...
|
|
||||||
- image_templates:
|
|
||||||
- anchore/syft:{{.Tag}}-nonroot-amd64
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-nonroot-amd64
|
|
||||||
goarch: amd64
|
|
||||||
dockerfile: Dockerfile.nonroot
|
dockerfile: Dockerfile.nonroot
|
||||||
use: buildx
|
ids: *docker-ids
|
||||||
build_flag_templates:
|
images: *docker-images
|
||||||
- "--platform=linux/amd64"
|
platforms: *docker-platforms
|
||||||
- "--build-arg=BUILD_DATE={{.Date}}"
|
labels: *docker-labels
|
||||||
- "--build-arg=BUILD_VERSION={{.Version}}"
|
tags:
|
||||||
- "--build-arg=VCS_REF={{.FullCommit}}"
|
- nonroot
|
||||||
- "--build-arg=VCS_URL={{.GitURL}}"
|
- "{{.Tag}}-nonroot"
|
||||||
|
|
||||||
- image_templates:
|
# debug images (root)
|
||||||
- anchore/syft:{{.Tag}}-nonroot-arm64v8
|
- id: debug
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-nonroot-arm64v8
|
|
||||||
goarch: arm64
|
|
||||||
dockerfile: Dockerfile.nonroot
|
|
||||||
use: buildx
|
|
||||||
build_flag_templates:
|
|
||||||
- "--platform=linux/arm64/v8"
|
|
||||||
- "--build-arg=BUILD_DATE={{.Date}}"
|
|
||||||
- "--build-arg=BUILD_VERSION={{.Version}}"
|
|
||||||
- "--build-arg=VCS_REF={{.FullCommit}}"
|
|
||||||
- "--build-arg=VCS_URL={{.GitURL}}"
|
|
||||||
|
|
||||||
- image_templates:
|
|
||||||
- anchore/syft:{{.Tag}}-nonroot-ppc64le
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-nonroot-ppc64le
|
|
||||||
goarch: ppc64le
|
|
||||||
dockerfile: Dockerfile.nonroot
|
|
||||||
use: buildx
|
|
||||||
build_flag_templates:
|
|
||||||
- "--platform=linux/ppc64le"
|
|
||||||
- "--build-arg=BUILD_DATE={{.Date}}"
|
|
||||||
- "--build-arg=BUILD_VERSION={{.Version}}"
|
|
||||||
- "--build-arg=VCS_REF={{.FullCommit}}"
|
|
||||||
- "--build-arg=VCS_URL={{.GitURL}}"
|
|
||||||
|
|
||||||
- image_templates:
|
|
||||||
- anchore/syft:{{.Tag}}-nonroot-s390x
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-nonroot-s390x
|
|
||||||
goarch: s390x
|
|
||||||
dockerfile: Dockerfile.nonroot
|
|
||||||
use: buildx
|
|
||||||
build_flag_templates:
|
|
||||||
- "--platform=linux/s390x"
|
|
||||||
- "--build-arg=BUILD_DATE={{.Date}}"
|
|
||||||
- "--build-arg=BUILD_VERSION={{.Version}}"
|
|
||||||
- "--build-arg=VCS_REF={{.FullCommit}}"
|
|
||||||
- "--build-arg=VCS_URL={{.GitURL}}"
|
|
||||||
|
|
||||||
# debug images...
|
|
||||||
- image_templates:
|
|
||||||
- anchore/syft:{{.Tag}}-debug-amd64
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-debug-amd64
|
|
||||||
goarch: amd64
|
|
||||||
dockerfile: Dockerfile.debug
|
dockerfile: Dockerfile.debug
|
||||||
use: buildx
|
ids: *docker-ids
|
||||||
build_flag_templates:
|
images: *docker-images
|
||||||
- "--platform=linux/amd64"
|
platforms: *docker-platforms
|
||||||
- "--build-arg=BUILD_DATE={{.Date}}"
|
labels: *docker-labels
|
||||||
- "--build-arg=BUILD_VERSION={{.Version}}"
|
tags:
|
||||||
- "--build-arg=VCS_REF={{.FullCommit}}"
|
- debug
|
||||||
- "--build-arg=VCS_URL={{.GitURL}}"
|
- "{{.Tag}}-debug"
|
||||||
|
|
||||||
- image_templates:
|
# debug-nonroot images
|
||||||
- anchore/syft:{{.Tag}}-debug-arm64v8
|
- id: debug-nonroot
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-debug-arm64v8
|
dockerfile: Dockerfile.debug-nonroot
|
||||||
goarch: arm64
|
ids: *docker-ids
|
||||||
dockerfile: Dockerfile.debug
|
images: *docker-images
|
||||||
use: buildx
|
platforms: *docker-platforms
|
||||||
build_flag_templates:
|
labels: *docker-labels
|
||||||
- "--platform=linux/arm64/v8"
|
tags:
|
||||||
- "--build-arg=BUILD_DATE={{.Date}}"
|
- debug-nonroot
|
||||||
- "--build-arg=BUILD_VERSION={{.Version}}"
|
- "{{.Tag}}-debug-nonroot"
|
||||||
- "--build-arg=VCS_REF={{.FullCommit}}"
|
|
||||||
- "--build-arg=VCS_URL={{.GitURL}}"
|
|
||||||
|
|
||||||
- image_templates:
|
|
||||||
- anchore/syft:{{.Tag}}-debug-ppc64le
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-debug-ppc64le
|
|
||||||
goarch: ppc64le
|
|
||||||
dockerfile: Dockerfile.debug
|
|
||||||
use: buildx
|
|
||||||
build_flag_templates:
|
|
||||||
- "--platform=linux/ppc64le"
|
|
||||||
- "--build-arg=BUILD_DATE={{.Date}}"
|
|
||||||
- "--build-arg=BUILD_VERSION={{.Version}}"
|
|
||||||
- "--build-arg=VCS_REF={{.FullCommit}}"
|
|
||||||
- "--build-arg=VCS_URL={{.GitURL}}"
|
|
||||||
|
|
||||||
- image_templates:
|
|
||||||
- anchore/syft:{{.Tag}}-debug-s390x
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-debug-s390x
|
|
||||||
goarch: s390x
|
|
||||||
dockerfile: Dockerfile.debug
|
|
||||||
use: buildx
|
|
||||||
build_flag_templates:
|
|
||||||
- "--platform=linux/s390x"
|
|
||||||
- "--build-arg=BUILD_DATE={{.Date}}"
|
|
||||||
- "--build-arg=BUILD_VERSION={{.Version}}"
|
|
||||||
- "--build-arg=VCS_REF={{.FullCommit}}"
|
|
||||||
- "--build-arg=VCS_URL={{.GitURL}}"
|
|
||||||
|
|
||||||
docker_manifests:
|
|
||||||
- name_template: anchore/syft:latest
|
|
||||||
image_templates:
|
|
||||||
- anchore/syft:{{.Tag}}-amd64
|
|
||||||
- anchore/syft:{{.Tag}}-arm64v8
|
|
||||||
- anchore/syft:{{.Tag}}-ppc64le
|
|
||||||
- anchore/syft:{{.Tag}}-s390x
|
|
||||||
|
|
||||||
- name_template: ghcr.io/anchore/syft:latest
|
|
||||||
image_templates:
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-amd64
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-arm64v8
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-ppc64le
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-s390x
|
|
||||||
|
|
||||||
- name_template: anchore/syft:{{.Tag}}
|
|
||||||
image_templates:
|
|
||||||
- anchore/syft:{{.Tag}}-amd64
|
|
||||||
- anchore/syft:{{.Tag}}-arm64v8
|
|
||||||
- anchore/syft:{{.Tag}}-ppc64le
|
|
||||||
- anchore/syft:{{.Tag}}-s390x
|
|
||||||
|
|
||||||
- name_template: ghcr.io/anchore/syft:{{.Tag}}
|
|
||||||
image_templates:
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-amd64
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-arm64v8
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-ppc64le
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-s390x
|
|
||||||
|
|
||||||
# nonroot images...
|
|
||||||
- name_template: anchore/syft:nonroot
|
|
||||||
image_templates:
|
|
||||||
- anchore/syft:{{.Tag}}-nonroot-amd64
|
|
||||||
- anchore/syft:{{.Tag}}-nonroot-arm64v8
|
|
||||||
- anchore/syft:{{.Tag}}-nonroot-ppc64le
|
|
||||||
- anchore/syft:{{.Tag}}-nonroot-s390x
|
|
||||||
|
|
||||||
- name_template: ghcr.io/anchore/syft:nonroot
|
|
||||||
image_templates:
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-nonroot-amd64
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-nonroot-arm64v8
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-nonroot-ppc64le
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-nonroot-s390x
|
|
||||||
|
|
||||||
- name_template: anchore/syft:{{.Tag}}-nonroot
|
|
||||||
image_templates:
|
|
||||||
- anchore/syft:{{.Tag}}-nonroot-amd64
|
|
||||||
- anchore/syft:{{.Tag}}-nonroot-arm64v8
|
|
||||||
- anchore/syft:{{.Tag}}-nonroot-ppc64le
|
|
||||||
- anchore/syft:{{.Tag}}-nonroot-s390x
|
|
||||||
|
|
||||||
- name_template: ghcr.io/anchore/syft:{{.Tag}}-nonroot
|
|
||||||
image_templates:
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-nonroot-amd64
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-nonroot-arm64v8
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-nonroot-ppc64le
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-nonroot-s390x
|
|
||||||
|
|
||||||
# debug images...
|
|
||||||
- name_template: anchore/syft:debug
|
|
||||||
image_templates:
|
|
||||||
- anchore/syft:{{.Tag}}-debug-amd64
|
|
||||||
- anchore/syft:{{.Tag}}-debug-arm64v8
|
|
||||||
- anchore/syft:{{.Tag}}-debug-ppc64le
|
|
||||||
- anchore/syft:{{.Tag}}-debug-s390x
|
|
||||||
|
|
||||||
- name_template: ghcr.io/anchore/syft:debug
|
|
||||||
image_templates:
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-debug-amd64
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-debug-arm64v8
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-debug-ppc64le
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-debug-s390x
|
|
||||||
|
|
||||||
- name_template: anchore/syft:{{.Tag}}-debug
|
|
||||||
image_templates:
|
|
||||||
- anchore/syft:{{.Tag}}-debug-amd64
|
|
||||||
- anchore/syft:{{.Tag}}-debug-arm64v8
|
|
||||||
- anchore/syft:{{.Tag}}-debug-ppc64le
|
|
||||||
- anchore/syft:{{.Tag}}-debug-s390x
|
|
||||||
|
|
||||||
- name_template: ghcr.io/anchore/syft:{{.Tag}}-debug
|
|
||||||
image_templates:
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-debug-amd64
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-debug-arm64v8
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-debug-ppc64le
|
|
||||||
- ghcr.io/anchore/syft:{{.Tag}}-debug-s390x
|
|
||||||
|
|
||||||
sboms:
|
sboms:
|
||||||
- artifacts: archive
|
- artifacts: archive
|
||||||
|
|||||||
20
Dockerfile
20
Dockerfile
@ -7,23 +7,7 @@ COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certifica
|
|||||||
# create the /tmp dir, which is needed for image content cache
|
# create the /tmp dir, which is needed for image content cache
|
||||||
WORKDIR /tmp
|
WORKDIR /tmp
|
||||||
|
|
||||||
COPY syft /
|
ARG TARGETPLATFORM
|
||||||
|
COPY ${TARGETPLATFORM}/syft /
|
||||||
ARG BUILD_DATE
|
|
||||||
ARG BUILD_VERSION
|
|
||||||
ARG VCS_REF
|
|
||||||
ARG VCS_URL
|
|
||||||
|
|
||||||
LABEL org.opencontainers.image.created=$BUILD_DATE
|
|
||||||
LABEL org.opencontainers.image.title="syft"
|
|
||||||
LABEL org.opencontainers.image.description="CLI tool and library for generating a Software Bill of Materials from container images and filesystems"
|
|
||||||
LABEL org.opencontainers.image.source=$VCS_URL
|
|
||||||
LABEL org.opencontainers.image.revision=$VCS_REF
|
|
||||||
LABEL org.opencontainers.image.vendor="Anchore, Inc."
|
|
||||||
LABEL org.opencontainers.image.version=$BUILD_VERSION
|
|
||||||
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
|
||||||
LABEL io.artifacthub.package.readme-url="https://raw.githubusercontent.com/anchore/syft/main/README.md"
|
|
||||||
LABEL io.artifacthub.package.logo-url="https://user-images.githubusercontent.com/5199289/136844524-1527b09f-c5cb-4aa9-be54-5aa92a6086c1.png"
|
|
||||||
LABEL io.artifacthub.package.license="Apache-2.0"
|
|
||||||
|
|
||||||
ENTRYPOINT ["/syft"]
|
ENTRYPOINT ["/syft"]
|
||||||
|
|||||||
@ -1,27 +1,9 @@
|
|||||||
FROM gcr.io/distroless/static-debian12:debug-nonroot
|
FROM gcr.io/distroless/static-debian12:debug
|
||||||
|
|
||||||
# create the /tmp dir, which is needed for image content cache
|
# create the /tmp dir, which is needed for image content cache
|
||||||
WORKDIR /tmp
|
WORKDIR /tmp
|
||||||
|
|
||||||
COPY syft /
|
ARG TARGETPLATFORM
|
||||||
|
COPY ${TARGETPLATFORM}/syft /
|
||||||
USER nonroot
|
|
||||||
|
|
||||||
ARG BUILD_DATE
|
|
||||||
ARG BUILD_VERSION
|
|
||||||
ARG VCS_REF
|
|
||||||
ARG VCS_URL
|
|
||||||
|
|
||||||
LABEL org.opencontainers.image.created=$BUILD_DATE
|
|
||||||
LABEL org.opencontainers.image.title="syft"
|
|
||||||
LABEL org.opencontainers.image.description="CLI tool and library for generating a Software Bill of Materials from container images and filesystems"
|
|
||||||
LABEL org.opencontainers.image.source=$VCS_URL
|
|
||||||
LABEL org.opencontainers.image.revision=$VCS_REF
|
|
||||||
LABEL org.opencontainers.image.vendor="Anchore, Inc."
|
|
||||||
LABEL org.opencontainers.image.version=$BUILD_VERSION
|
|
||||||
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
|
||||||
LABEL io.artifacthub.package.readme-url="https://raw.githubusercontent.com/anchore/syft/main/README.md"
|
|
||||||
LABEL io.artifacthub.package.logo-url="https://user-images.githubusercontent.com/5199289/136844524-1527b09f-c5cb-4aa9-be54-5aa92a6086c1.png"
|
|
||||||
LABEL io.artifacthub.package.license="Apache-2.0"
|
|
||||||
|
|
||||||
ENTRYPOINT ["/syft"]
|
ENTRYPOINT ["/syft"]
|
||||||
|
|||||||
11
Dockerfile.debug-nonroot
Normal file
11
Dockerfile.debug-nonroot
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
FROM gcr.io/distroless/static-debian12:debug-nonroot
|
||||||
|
|
||||||
|
# create the /tmp dir, which is needed for image content cache
|
||||||
|
WORKDIR /tmp
|
||||||
|
|
||||||
|
ARG TARGETPLATFORM
|
||||||
|
COPY ${TARGETPLATFORM}/syft /
|
||||||
|
|
||||||
|
USER nonroot
|
||||||
|
|
||||||
|
ENTRYPOINT ["/syft"]
|
||||||
@ -3,25 +3,9 @@ FROM gcr.io/distroless/static-debian12:nonroot
|
|||||||
# create the /tmp dir, which is needed for image content cache
|
# create the /tmp dir, which is needed for image content cache
|
||||||
WORKDIR /tmp
|
WORKDIR /tmp
|
||||||
|
|
||||||
COPY syft /
|
ARG TARGETPLATFORM
|
||||||
|
COPY ${TARGETPLATFORM}/syft /
|
||||||
|
|
||||||
USER nonroot
|
USER nonroot
|
||||||
|
|
||||||
ARG BUILD_DATE
|
|
||||||
ARG BUILD_VERSION
|
|
||||||
ARG VCS_REF
|
|
||||||
ARG VCS_URL
|
|
||||||
|
|
||||||
LABEL org.opencontainers.image.created=$BUILD_DATE
|
|
||||||
LABEL org.opencontainers.image.title="syft"
|
|
||||||
LABEL org.opencontainers.image.description="CLI tool and library for generating a Software Bill of Materials from container images and filesystems"
|
|
||||||
LABEL org.opencontainers.image.source=$VCS_URL
|
|
||||||
LABEL org.opencontainers.image.revision=$VCS_REF
|
|
||||||
LABEL org.opencontainers.image.vendor="Anchore, Inc."
|
|
||||||
LABEL org.opencontainers.image.version=$BUILD_VERSION
|
|
||||||
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
|
||||||
LABEL io.artifacthub.package.readme-url="https://raw.githubusercontent.com/anchore/syft/main/README.md"
|
|
||||||
LABEL io.artifacthub.package.logo-url="https://user-images.githubusercontent.com/5199289/136844524-1527b09f-c5cb-4aa9-be54-5aa92a6086c1.png"
|
|
||||||
LABEL io.artifacthub.package.license="Apache-2.0"
|
|
||||||
|
|
||||||
ENTRYPOINT ["/syft"]
|
ENTRYPOINT ["/syft"]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user