mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
00249f1d43
* Create scorecard.yml Adds a scorecard workflow to regularly check the repo. See docs: https://github.com/marketplace/actions/ossf-scorecard-action#scorecard-badge Signed-off-by: Moritz Johner <moolen@users.noreply.github.com>
12 lines
499 B
Docker
12 lines
499 B
Docker
FROM golang:1.21.6@sha256:6fbd2d3398db924f8d708cf6e94bd3a436bb468195daa6a96e80504e0a9615f2
|
|
WORKDIR /
|
|
COPY ./bin/external-secrets /external-secrets
|
|
|
|
RUN go install github.com/go-delve/delve/cmd/dlv@latest
|
|
RUN chmod +x /go/bin/dlv
|
|
RUN mv /go/bin/dlv /
|
|
|
|
EXPOSE 30000
|
|
|
|
# dlv --listen=:30000 --api-version=2 --headless=true exec /app/build/api
|
|
ENTRYPOINT ["/dlv", "--listen=:30000", "--api-version=2", "--headless=true", "--continue=true", "--accept-multiclient=true", "exec", "/external-secrets", "--"]
|