├── .dockerignore ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Dockerfile-linux.template ├── Dockerfile-windows.template ├── Dockerfile.build ├── LICENSE ├── Makefile ├── README.md ├── amd64 ├── Dockerfile ├── hello ├── nanoserver-ltsc2022 │ ├── Dockerfile │ └── hello.txt └── nanoserver-ltsc2025 │ ├── Dockerfile │ └── hello.txt ├── arm32v5 ├── Dockerfile └── hello ├── arm32v6 ├── Dockerfile └── hello ├── arm32v7 ├── Dockerfile └── hello ├── arm64v8 ├── Dockerfile └── hello ├── generate-stackbrew-library.sh ├── hello.c ├── i386 ├── Dockerfile └── hello ├── mips64le ├── Dockerfile └── hello ├── musl-gcc-mips64le.patch ├── ppc64le ├── Dockerfile └── hello ├── riscv64 ├── Dockerfile └── hello ├── s390x ├── Dockerfile └── hello └── update.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .host-arch 2 | -------------------------------------------------------------------------------- /Dockerfile-linux.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/Dockerfile-linux.template -------------------------------------------------------------------------------- /Dockerfile-windows.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/Dockerfile-windows.template -------------------------------------------------------------------------------- /Dockerfile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/Dockerfile.build -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/README.md -------------------------------------------------------------------------------- /amd64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/amd64/Dockerfile -------------------------------------------------------------------------------- /amd64/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/amd64/hello -------------------------------------------------------------------------------- /amd64/nanoserver-ltsc2022/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/amd64/nanoserver-ltsc2022/Dockerfile -------------------------------------------------------------------------------- /amd64/nanoserver-ltsc2022/hello.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/amd64/nanoserver-ltsc2022/hello.txt -------------------------------------------------------------------------------- /amd64/nanoserver-ltsc2025/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/amd64/nanoserver-ltsc2025/Dockerfile -------------------------------------------------------------------------------- /amd64/nanoserver-ltsc2025/hello.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/amd64/nanoserver-ltsc2025/hello.txt -------------------------------------------------------------------------------- /arm32v5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/arm32v5/Dockerfile -------------------------------------------------------------------------------- /arm32v5/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/arm32v5/hello -------------------------------------------------------------------------------- /arm32v6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/arm32v6/Dockerfile -------------------------------------------------------------------------------- /arm32v6/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/arm32v6/hello -------------------------------------------------------------------------------- /arm32v7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/arm32v7/Dockerfile -------------------------------------------------------------------------------- /arm32v7/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/arm32v7/hello -------------------------------------------------------------------------------- /arm64v8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/arm64v8/Dockerfile -------------------------------------------------------------------------------- /arm64v8/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/arm64v8/hello -------------------------------------------------------------------------------- /generate-stackbrew-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/generate-stackbrew-library.sh -------------------------------------------------------------------------------- /hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/hello.c -------------------------------------------------------------------------------- /i386/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/i386/Dockerfile -------------------------------------------------------------------------------- /i386/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/i386/hello -------------------------------------------------------------------------------- /mips64le/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/mips64le/Dockerfile -------------------------------------------------------------------------------- /mips64le/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/mips64le/hello -------------------------------------------------------------------------------- /musl-gcc-mips64le.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/musl-gcc-mips64le.patch -------------------------------------------------------------------------------- /ppc64le/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/ppc64le/Dockerfile -------------------------------------------------------------------------------- /ppc64le/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/ppc64le/hello -------------------------------------------------------------------------------- /riscv64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/riscv64/Dockerfile -------------------------------------------------------------------------------- /riscv64/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/riscv64/hello -------------------------------------------------------------------------------- /s390x/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/s390x/Dockerfile -------------------------------------------------------------------------------- /s390x/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/s390x/hello -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/hello-world/HEAD/update.sh --------------------------------------------------------------------------------