├── .github └── workflows │ ├── dotnet.yml │ ├── java.yml │ ├── mono.yml │ └── oses.yml ├── README.md ├── dotnet ├── 5 │ └── Dockerfile ├── 6 │ └── Dockerfile └── entrypoint.sh ├── java ├── 8 │ └── Dockerfile ├── 11 │ └── Dockerfile ├── 16 │ └── Dockerfile ├── 17 │ └── Dockerfile ├── 21 │ └── Dockerfile └── entrypoint.sh ├── mono ├── entrypoint.sh └── latest │ └── Dockerfile └── oses └── debian ├── Dockerfile └── entrypoint.sh /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/java.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/.github/workflows/java.yml -------------------------------------------------------------------------------- /.github/workflows/mono.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/.github/workflows/mono.yml -------------------------------------------------------------------------------- /.github/workflows/oses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/.github/workflows/oses.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/README.md -------------------------------------------------------------------------------- /dotnet/5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/dotnet/5/Dockerfile -------------------------------------------------------------------------------- /dotnet/6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/dotnet/6/Dockerfile -------------------------------------------------------------------------------- /dotnet/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/dotnet/entrypoint.sh -------------------------------------------------------------------------------- /java/11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/java/11/Dockerfile -------------------------------------------------------------------------------- /java/16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/java/16/Dockerfile -------------------------------------------------------------------------------- /java/17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/java/17/Dockerfile -------------------------------------------------------------------------------- /java/21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/java/21/Dockerfile -------------------------------------------------------------------------------- /java/8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/java/8/Dockerfile -------------------------------------------------------------------------------- /java/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/java/entrypoint.sh -------------------------------------------------------------------------------- /mono/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/mono/entrypoint.sh -------------------------------------------------------------------------------- /mono/latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/mono/latest/Dockerfile -------------------------------------------------------------------------------- /oses/debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/oses/debian/Dockerfile -------------------------------------------------------------------------------- /oses/debian/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikolajKolek/pterodactyl-images-arm64/HEAD/oses/debian/entrypoint.sh --------------------------------------------------------------------------------