2022-04-13 13:38:11 -05:00
|
|
|
FROM golang:1.18.1-alpine@sha256:1a80c4c090ad01efb2952b0ba2a8cb5aed157eb10963c8c088e443911ac48a88
|
2018-11-27 08:49:25 -06:00
|
|
|
|
2018-11-29 12:40:04 -06:00
|
|
|
RUN apk add --no-cache bash \
|
2021-08-24 20:49:11 -03:00
|
|
|
curl \
|
|
|
|
docker-cli \
|
|
|
|
docker-cli-buildx \
|
|
|
|
git \
|
2022-02-13 17:37:38 +01:00
|
|
|
gpg \
|
2021-08-24 20:49:11 -03:00
|
|
|
mercurial \
|
|
|
|
make \
|
2022-04-29 09:32:24 -03:00
|
|
|
openssh-client \
|
2021-09-21 21:17:42 -04:00
|
|
|
build-base \
|
|
|
|
tini
|
2018-11-27 08:49:25 -06:00
|
|
|
|
2021-11-18 13:54:54 +01:00
|
|
|
# install cosign
|
2022-04-13 23:59:15 -03:00
|
|
|
COPY --from=gcr.io/projectsigstore/cosign:v1.7.2@sha256:ad2985a87622d5934a4bc06a61faadff772e377937e42519af4f506e1b019d1e /ko-app/cosign /usr/local/bin/cosign
|
2021-11-18 13:54:54 +01:00
|
|
|
|
2021-09-21 21:17:42 -04:00
|
|
|
ENTRYPOINT ["/sbin/tini", "--", "/entrypoint.sh"]
|
2018-09-04 15:19:01 +03:00
|
|
|
CMD [ "-h" ]
|
2018-11-27 08:49:25 -06:00
|
|
|
|
2018-12-16 11:11:01 -02:00
|
|
|
COPY scripts/entrypoint.sh /entrypoint.sh
|
2018-11-27 08:49:25 -06:00
|
|
|
RUN chmod +x /entrypoint.sh
|
2018-12-16 11:11:01 -02:00
|
|
|
|
2021-01-07 16:21:12 -03:00
|
|
|
COPY goreleaser_*.apk /tmp/
|
2021-11-17 15:00:10 -03:00
|
|
|
RUN apk add --no-cache --allow-untrusted /tmp/goreleaser_*.apk
|