-
-
Notifications
You must be signed in to change notification settings - Fork 466
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9a0ca62
commit 934b3c8
Showing
772 changed files
with
38,660 additions
and
10,306 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
FROM golang:1.22.2-alpine3.19 as builder | ||
FROM golang:1.22.2-alpine3.19 AS builder | ||
ARG GIT_TAG | ||
WORKDIR /app | ||
COPY . . | ||
RUN apk update && apk add make bash git | ||
RUN apk update && apk add --no-cache make bash git | ||
ENV GIT_TAG=${GIT_TAG} | ||
ENV GO111MODULE=on | ||
ENV CGO_ENABLED=0 | ||
RUN make build | ||
|
||
FROM alpine:3.19 | ||
WORKDIR /app | ||
RUN apk update && apk add bash | ||
RUN apk update && apk add --no-cache bash | ||
COPY --from=builder /app/bin/k3d-tools . | ||
ENTRYPOINT [ "/app/k3d-tools"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
tools/vendor/github.com/distribution/reference/.golangci.yml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
tools/vendor/github.com/distribution/reference/CODE-OF-CONDUCT.md
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
114 changes: 114 additions & 0 deletions
114
tools/vendor/github.com/distribution/reference/CONTRIBUTING.md
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.