mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
* chore(deps): update tools to latest versions Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * fix linting Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> Co-authored-by: spiffcs <32073428+spiffcs@users.noreply.github.com> Co-authored-by: Alex Goodman <wagoodman@users.noreply.github.com>
6 lines
279 B
Groff
6 lines
279 B
Groff
FROM alpine:3.6
|
|
RUN apk update && apk add python3 wget curl unzip make ca-certificates jq
|
|
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
|