github.com/anchore/syft@v1.38.2/syft/pkg/cataloger/binary/test-fixtures/image-dotnet-app/Dockerfile (about)

     1  FROM alpine:latest AS builder
     2  
     3  RUN apk add --no-cache wget unzip
     4  RUN mkdir -p /app
     5  RUN wget -O /app/minver.nupkg https://www.nuget.org/api/v2/package/minver-cli/4.3.0
     6  RUN unzip /app/minver.nupkg -d /app/minver
     7  
     8  from busybox:latest
     9  
    10  COPY --from=builder /app/minver /minver