File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -107,6 +107,12 @@ dockers:
107107 image_templates :
108108 - " ghcr.io/chainloop-dev/chainloop/artifact-cas:{{ .Tag }}"
109109 - " ghcr.io/chainloop-dev/chainloop/artifact-cas:latest"
110+ - dockerfile : app/cli/Dockerfile.goreleaser
111+ ids :
112+ - cli
113+ image_templates :
114+ - " ghcr.io/chainloop-dev/chainloop/cli:{{ .Tag }}"
115+ - " ghcr.io/chainloop-dev/chainloop/cli:latest"
110116
111117release :
112118 extra_files :
Original file line number Diff line number Diff line change 1+ FROM golang:1.21@sha256:afccce40fb4a6b6a80d0386d6296737c68207f8d69086d0e16aa9cb9dbb753db AS builder
2+
3+ FROM scratch
4+
5+ COPY ./chainloop /
6+ COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
7+
8+ ENTRYPOINT [ "./chainloop"]
You can’t perform that action at this time.
0 commit comments