mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
0004892aa7
Bumps golang from 1.23.3 to 1.23.4. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gergely Brautigam <182850+Skarlso@users.noreply.github.com>
12 lines
500 B
Docker
12 lines
500 B
Docker
FROM golang:1.23.4@sha256:574185e5c6b9d09873f455a7c205ea0514bfd99738c5dc7750196403a44ed4b7
|
|
WORKDIR /
|
|
COPY ./bin/external-secrets /external-secrets
|
|
|
|
RUN go install github.com/go-delve/delve/cmd/dlv@v1.22.0
|
|
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", "--"]
|