2024-11-14 05:05:44 +02:00
|
|
|
FROM golang:1.23.3-alpine@sha256:c694a4d291a13a9f9d94933395673494fc2cc9d4777b85df3a7e70b3492d3574
|
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 \
|
2024-09-12 16:24:54 +02:00
|
|
|
tini \
|
|
|
|
upx
|
2018-11-27 16:49:25 +02:00
|
|
|
|
2021-11-18 14:54:54 +02:00
|
|
|
# install cosign
|
2024-10-07 13:25:15 +02:00
|
|
|
COPY --from=ghcr.io/sigstore/cosign/cosign:v2.4.0@sha256:9d50ceb15f023eda8f58032849eedc0216236d2e2f4cfe1cdf97c00ae7798cfe /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
|