2024-02-08 15:21:48 +02:00
|
|
|
FROM golang:1.22.0-alpine@sha256:8e96e6cff6a388c2f70f5f662b64120941fcd7d4b89d62fec87520323a316bd9
|
2018-11-27 16:49:25 +02:00
|
|
|
|
2018-11-29 20:40:04 +02:00
|
|
|
RUN apk add --no-cache bash \
|
2021-08-25 01:49:11 +02:00
|
|
|
curl \
|
|
|
|
docker-cli \
|
|
|
|
docker-cli-buildx \
|
|
|
|
git \
|
2022-02-13 18:37:38 +02:00
|
|
|
gpg \
|
2021-08-25 01:49:11 +02:00
|
|
|
mercurial \
|
|
|
|
make \
|
2022-04-29 14:32:24 +02:00
|
|
|
openssh-client \
|
2021-09-22 03:17:42 +02:00
|
|
|
build-base \
|
|
|
|
tini
|
2018-11-27 16:49:25 +02:00
|
|
|
|
2021-11-18 14:54:54 +02:00
|
|
|
# install cosign
|
2023-08-21 21:34:08 +02:00
|
|
|
COPY --from=gcr.io/projectsigstore/cosign:v2.1.1@sha256:411ace177097a33cb2ee74028a87ffdcb70965003cd1378c1ec7bf9f9dec9359 /ko-app/cosign /usr/bin/cosign
|
2021-11-18 14:54:54 +02:00
|
|
|
|
2023-07-12 14:47:37 +02:00
|
|
|
# install syft
|
|
|
|
RUN curl -sSfL https://raw.githubusercontent.com/anchore/syft/v0.84.1/install.sh | sh -s -- -b /usr/local/bin
|
|
|
|
|
2021-09-22 03:17:42 +02:00
|
|
|
ENTRYPOINT ["/sbin/tini", "--", "/entrypoint.sh"]
|
2018-09-04 14:19:01 +02:00
|
|
|
CMD [ "-h" ]
|
2018-11-27 16:49:25 +02:00
|
|
|
|
2018-12-16 15:11:01 +02:00
|
|
|
COPY scripts/entrypoint.sh /entrypoint.sh
|
2018-11-27 16:49:25 +02:00
|
|
|
RUN chmod +x /entrypoint.sh
|
2018-12-16 15:11:01 +02:00
|
|
|
|
2021-01-07 21:21:12 +02:00
|
|
|
COPY goreleaser_*.apk /tmp/
|
2021-11-17 20:00:10 +02:00
|
|
|
RUN apk add --no-cache --allow-untrusted /tmp/goreleaser_*.apk
|