Skip to content

Commit

Permalink
feat: initial WIP version
Browse files Browse the repository at this point in the history
  • Loading branch information
dirien committed Dec 9, 2024
1 parent a0baa28 commit 2352943
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile.tilt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM golang:1.23-alpine AS builder
WORKDIR /usr/src/app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN go build -o /usr/local/bin/app .


FROM gcr.io/distroless/static
COPY --from=builder /usr/local/bin/app /usr/local/bin/secrets-store-csi-driver-provider-pulumi-esc
ENTRYPOINT ["/usr/local/bin/secrets-store-csi-driver-provider-pulumi-esc"]

0 comments on commit 2352943

Please sign in to comment.