Skip to content

Commit

Permalink
Add container file for cli used by Konflux (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierCazade committed Aug 9, 2024
1 parent db8697d commit 5b3bf62
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions cli.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM docker.io/library/golang:1.22 as builder
COPY . .

RUN make compile
FROM registry.access.redhat.com/ubi9/ubi-micro:latest

COPY --from=builder /go/build/ /releases

0 comments on commit 5b3bf62

Please sign in to comment.