Skip to content

Commit

Permalink
Initial checkin
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Fox <[email protected]>
  • Loading branch information
kfox1111 committed Nov 16, 2024
1 parent aa50b45 commit 236e22b
Show file tree
Hide file tree
Showing 35 changed files with 3,377 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM docker.io/library/golang:1.23.2 as build

COPY * /build/
WORKDIR /build

RUN \
GOPROXY=direct CGO_ENABLED=0 go build .

FROM gcr.io/distroless/static-debian12
COPY --from=build /build/spire-ha-agent /usr/bin/spire-ha-agent
ENTRYPOINT ["/usr/bin/spire-ha-agent"]
Loading

0 comments on commit 236e22b

Please sign in to comment.