From d40651996b1b91b723d5c52c918b0fa5f18c530a Mon Sep 17 00:00:00 2001 From: Mateusz Urbanek Date: Thu, 23 Jan 2025 12:01:23 +0100 Subject: [PATCH] test: foo Signed-off-by: Mateusz Urbanek --- .github/workflows/release.yaml | 33 +++-- LICENSE | 201 ++++++++++++++++++++++++++++++ README.md | 26 ++++ README.md.gotpl | 47 +++++++ docker-bake.hcl | 32 +++++ go.mod | 21 ++++ go.sum | 44 +++++++ hack/readme/main.go | 139 +++++++++++++++++++++ {kine => library/kine}/Dockerfile | 2 +- {zig => library/zig}/Dockerfile | 2 +- 10 files changed, 532 insertions(+), 15 deletions(-) create mode 100644 LICENSE create mode 100644 README.md create mode 100644 README.md.gotpl create mode 100644 docker-bake.hcl create mode 100644 go.mod create mode 100644 go.sum create mode 100644 hack/readme/main.go rename {kine => library/kine}/Dockerfile (93%) rename {zig => library/zig}/Dockerfile (96%) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index abc9849..6a20ee5 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,15 +3,15 @@ name: release on: workflow_dispatch: inputs: - image: - description: 'Image to release' + name: + description: 'Name of the image to release' required: true type: choice options: - kine - zig version: - description: 'version to release' + description: 'Version to release' required: true type: string @@ -30,17 +30,24 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - uses: docker/setup-qemu-action@v3 + - id: meta + uses: docker/metadata-action@v5 + with: + images: | + name=ghcr.io/anza-labs/library/${{ inputs.name }},enable=true + tags: | + type=semver,pattern={{version}},value=${{ inputs.version }} + type=semver,pattern={{major}}.{{minor}},value=${{ inputs.version }} + - run: | + echo "variable \"${{ inputs.name }}\" { default = \"${{ inputs.version }}\" }" > ./vars.hcl - id: buildx uses: docker/setup-buildx-action@v3 - with: - platforms: linux/amd64,linux/arm64 - - uses: docker/build-push-action@v6 + - uses: docker/bake-action@v6 with: builder: ${{ steps.buildx.outputs.name }} - platforms: linux/amd64,linux/arm64 - push: true - context: "./${{ inputs.image }}" - build-args: | - VERSION=${{ inputs.version }} - tags: | - ghcr.io/anza-labs/library/${{ inputs.image }}:${{ inputs.version }} + push: false + files: | + ./docker-bake.hcl + cwd://${{ steps.meta.outputs.bake-file }} + cwd://vars.hcl + targets: ${{ inputs.name }} diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..261eeb9 --- /dev/null +++ b/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/README.md b/README.md new file mode 100644 index 0000000..f5146cc --- /dev/null +++ b/README.md @@ -0,0 +1,26 @@ + +# anza-labs docker library + +[![GitHub License](https://img.shields.io/github/license/anza-labs/docker-library)][license] +[![GitHub issues](https://img.shields.io/github/issues/anza-labs/docker-library)](https://github.com/anza-labs/docker-library/issues) + +// TODO + +## Contributing + +We welcome contributions! Please follow these steps to contribute: + +1. Fork the repository. +2. Create a new branch. +3. Make your changes. +4. Submit a pull request. + +## License + +This project is licensed under the [Apache-2.0][license]. + + + +[license]: https://github.com/anza-labs/docker-library/blob/main/LICENSE diff --git a/README.md.gotpl b/README.md.gotpl new file mode 100644 index 0000000..62cdde6 --- /dev/null +++ b/README.md.gotpl @@ -0,0 +1,47 @@ +# anza-labs docker library + +[![GitHub License](https://img.shields.io/github/license/anza-labs/docker-library)][license] +[![GitHub issues](https://img.shields.io/github/issues/anza-labs/docker-library)](https://github.com/anza-labs/docker-library/issues) + +// TODO + +{{- with .Images }} +## Available Images + +The following Docker images are available in this repository: + +{{- range . }} +### {{ .Name }} + +- **Path**: `library/{{ .Name }}` +- **Description**: {{ .Description }} +- **Tags**: {{ range .Tags }} `{{ . }}`{{ end }} +{{- end }} + +## Usage + +To use any of the available Docker images, pull the desired image using the following command: + +``` +docker pull {{ .Registry }}/{{ .RepoName }}/: +``` + +Replace `` with the name of the image and `` with the desired tag. +{{- end }} + +## Contributing + +We welcome contributions! Please follow these steps to contribute: + +1. Fork the repository. +2. Create a new branch. +3. Make your changes. +4. Submit a pull request. + +## License + +This project is licensed under the [{{ .License }}][license]. + + + +[license]: https://github.com/anza-labs/docker-library/blob/main/LICENSE diff --git a/docker-bake.hcl b/docker-bake.hcl new file mode 100644 index 0000000..729737e --- /dev/null +++ b/docker-bake.hcl @@ -0,0 +1,32 @@ +variable "kine" { default = "" } +variable "zig" { default = "" } + +target "docker-metadata-action" {} + +target "kine" { + inherits = ["docker-metadata-action"] + context = "./library/kine" + dockerfile = "Dockerfile" + platforms = [ + "linux/amd64", + "linux/arm64", + ] + args = { + VERSION = "${kine}" + } +} + +target "zig" { + inherits = ["docker-metadata-action"] + context = "./library/zig" + dockerfile = "Dockerfile" + platforms = [ + "linux/amd64", + "linux/arm64", + "linux/ppc64le", + "linux/riscv64", + ] + args = { + VERSION = "${zig}" + } +} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..ecabd7b --- /dev/null +++ b/go.mod @@ -0,0 +1,21 @@ +module tools + +go 1.23.4 + +require ( + github.com/Masterminds/sprig/v3 v3.3.0 + gopkg.in/yaml.v3 v3.0.1 +) + +require ( + dario.cat/mergo v1.0.1 // indirect + github.com/Masterminds/goutils v1.1.1 // indirect + github.com/Masterminds/semver/v3 v3.3.0 // indirect + github.com/google/uuid v1.6.0 // indirect + github.com/huandu/xstrings v1.5.0 // indirect + github.com/mitchellh/copystructure v1.2.0 // indirect + github.com/mitchellh/reflectwalk v1.0.2 // indirect + github.com/shopspring/decimal v1.4.0 // indirect + github.com/spf13/cast v1.7.0 // indirect + golang.org/x/crypto v0.26.0 // indirect +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..643d10a --- /dev/null +++ b/go.sum @@ -0,0 +1,44 @@ +dario.cat/mergo v1.0.1 h1:Ra4+bf83h2ztPIQYNP99R6m+Y7KfnARDfID+a+vLl4s= +dario.cat/mergo v1.0.1/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= +github.com/Masterminds/goutils v1.1.1 h1:5nUrii3FMTL5diU80unEVvNevw1nH4+ZV4DSLVJLSYI= +github.com/Masterminds/goutils v1.1.1/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU= +github.com/Masterminds/semver/v3 v3.3.0 h1:B8LGeaivUe71a5qox1ICM/JLl0NqZSW5CHyL+hmvYS0= +github.com/Masterminds/semver/v3 v3.3.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM= +github.com/Masterminds/sprig/v3 v3.3.0 h1:mQh0Yrg1XPo6vjYXgtf5OtijNAKJRNcTdOOGZe3tPhs= +github.com/Masterminds/sprig/v3 v3.3.0/go.mod h1:Zy1iXRYNqNLUolqCpL4uhk6SHUMAOSCzdgBfDb35Lz0= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/frankban/quicktest v1.14.6 h1:7Xjx+VpznH+oBnejlPUj8oUpdxnVs4f8XU8WnHkI4W8= +github.com/frankban/quicktest v1.14.6/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0= +github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= +github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/huandu/xstrings v1.5.0 h1:2ag3IFq9ZDANvthTwTiqSSZLjDc+BedvHPAp5tJy2TI= +github.com/huandu/xstrings v1.5.0/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= +github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= +github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/mitchellh/copystructure v1.2.0 h1:vpKXTN4ewci03Vljg/q9QvCGUDttBOGBIa15WveJJGw= +github.com/mitchellh/copystructure v1.2.0/go.mod h1:qLl+cE2AmVv+CoeAwDPye/v+N2HKCj9FbZEVFJRxO9s= +github.com/mitchellh/reflectwalk v1.0.2 h1:G2LzWKi524PWgd3mLHV8Y5k7s6XUvT0Gef6zxSIeXaQ= +github.com/mitchellh/reflectwalk v1.0.2/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= +github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= +github.com/shopspring/decimal v1.4.0 h1:bxl37RwXBklmTi0C79JfXCEBD1cqqHt0bbgBAGFp81k= +github.com/shopspring/decimal v1.4.0/go.mod h1:gawqmDU56v4yIKSwfBSFip1HdCCXN8/+DMd9qYNcwME= +github.com/spf13/cast v1.7.0 h1:ntdiHjuueXFgm5nzDRdOS4yfT43P5Fnud6DH50rz/7w= +github.com/spf13/cast v1.7.0/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo= +github.com/stretchr/testify v1.5.1 h1:nOGnQDM7FYENwehXlg/kFVnos3rEvtKTjRvOWSzb6H4= +github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +golang.org/x/crypto v0.26.0 h1:RrRspgV4mU+YwB4FYnuBoKsUapNIL5cohGAmSH3azsw= +golang.org/x/crypto v0.26.0/go.mod h1:GY7jblb9wI+FOo5y8/S2oY4zWP07AkOJ4+jxCqdqn54= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.3.0 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU= +gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/hack/readme/main.go b/hack/readme/main.go new file mode 100644 index 0000000..0b278d8 --- /dev/null +++ b/hack/readme/main.go @@ -0,0 +1,139 @@ +package main + +import ( + "bytes" + "flag" + "fmt" + "log" + "os" + "path/filepath" + "text/template" + + "github.com/Masterminds/sprig/v3" + + "gopkg.in/yaml.v3" +) + +const ( + readmeTemplateFile = "./README.md.gotpl" + libraryDir = "./library" + + defaultRegistry = "ghcr.io" + defaultRepository = "anza-labs/library" + defaultLicense = "Apache-2.0" +) + +var ( + registry string + repository string + license string +) + +type Repo struct { + Images []Image + License string + Registry string + RepoName string +} + +type Image struct { +} + +func main() { + flag.StringVar(®istry, "registry", defaultRegistry, "") + flag.StringVar(&repository, "repo", defaultRepository, "") + flag.StringVar(&license, "license", defaultLicense, "") + flag.Parse() + + images, err := loadImages(libraryDir) + if err != nil { + log.Fatalf("Error loading images: %v", err) + } + + readme, err := renderReadme(images) + if err != nil { + log.Fatalf("Error rendering README: %v", err) + } + + err = os.WriteFile("README.md", []byte(readme), 0644) + if err != nil { + log.Fatalf("Error writing README.md: %v", err) + } + + log.Print("README.md generated successfully.") +} + +// loadImages recursively loads all Image.yaml files from the given directory. +func loadImages(dir string) ([]Image, error) { + var images []Image + + err := filepath.Walk(dir, func(path string, info os.FileInfo, err error) error { + if err != nil { + return err + } + if info.IsDir() || filepath.Base(path) != "Image.yaml" { + return nil + } + + image, err := loadImage(path) + if err != nil { + return fmt.Errorf("failed to load %s: %w", path, err) + } + images = append(images, image) + return nil + }) + if err != nil { + return nil, err + } + + return images, nil +} + +// loadImage parses a single Image file into a Image struct. +func loadImage(path string) (Image, error) { + data, err := os.ReadFile(path) + if err != nil { + return Image{}, err + } + + var image Image + if err := yaml.Unmarshal(data, &image); err != nil { + return Image{}, err + } + + // image.Description = strings.ReplaceAll(image.Description, "\n", " ") + // image.Description = strings.ReplaceAll(image.Description, "\r", " ") + + return image, nil +} + +// renderReadme generates the README.md content using the images data. +func renderReadme(images []Image) (string, error) { + readmeTemplate, err := os.ReadFile(readmeTemplateFile) + if err != nil { + return "", err + } + + readmeTemplate = append([]byte("\n"), readmeTemplate...) + + tmpl, err := template.New("readme"). + Funcs(sprig.FuncMap()). + Parse(string(readmeTemplate)) + if err != nil { + return "", err + } + + readme := Repo{ + Images: images, + License: license, + Registry: registry, + RepoName: repository, + } + + var buf bytes.Buffer + if err := tmpl.Execute(&buf, readme); err != nil { + return "", err + } + + return buf.String(), nil +} diff --git a/kine/Dockerfile b/library/kine/Dockerfile similarity index 93% rename from kine/Dockerfile rename to library/kine/Dockerfile index 9007339..7fafa07 100644 --- a/kine/Dockerfile +++ b/library/kine/Dockerfile @@ -16,7 +16,7 @@ RUN wget "https://github.com/k3s-io/kine/releases/download/${VERSION}/kine-$(cat # Use distroless as minimal base image to package the builder binary # Refer to https://github.com/GoogleContainerTools/distroless for more details -FROM gcr.io/distroless/static:latest +FROM gcr.io/distroless/static:latest AS image WORKDIR / COPY --from=alpine /workspace/kine . ENTRYPOINT ["/kine"] diff --git a/zig/Dockerfile b/library/zig/Dockerfile similarity index 96% rename from zig/Dockerfile rename to library/zig/Dockerfile index b1547b1..ed54e1a 100644 --- a/zig/Dockerfile +++ b/library/zig/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.21 AS base +FROM alpine:3.21 AS image # select arch RUN echo $(case "$(uname -m)" in \