mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
6 lines
276 B
Groff
6 lines
276 B
Groff
FROM alpine:3.6
|
|
RUN apk update && apk add python3 wget curl unzip make ca-certificates
|
|
RUN curl -O -L "https://github.com/sigstore/cosign/releases/latest/download/cosign-linux-amd64" && \
|
|
mv cosign-linux-amd64 /usr/local/bin/cosign && \
|
|
chmod +x /usr/local/bin/cosign
|