├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml ├── linters │ ├── .hadolint.yaml │ └── .markdown-lint.yml └── workflows │ └── linter.yml ├── Dockerfile ├── LICENSE ├── README.md └── example-tini └── Dockerfile /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretFisher/multi-platform-docker-build/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: bretfisher 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretFisher/multi-platform-docker-build/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretFisher/multi-platform-docker-build/HEAD/.github/linters/.hadolint.yaml -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretFisher/multi-platform-docker-build/HEAD/.github/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretFisher/multi-platform-docker-build/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretFisher/multi-platform-docker-build/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretFisher/multi-platform-docker-build/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretFisher/multi-platform-docker-build/HEAD/README.md -------------------------------------------------------------------------------- /example-tini/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BretFisher/multi-platform-docker-build/HEAD/example-tini/Dockerfile --------------------------------------------------------------------------------