├── .github └── workflows │ └── test.yml ├── .gitignore ├── 10.0-dev ├── VERSION ├── jdk21 │ └── Dockerfile ├── jdk25 │ └── Dockerfile ├── jre21 │ └── Dockerfile ├── jre25 │ └── Dockerfile └── update.sh ├── 10.0 ├── VERSION ├── jdk21 │ └── Dockerfile ├── jdk25 │ └── Dockerfile ├── jre21 │ └── Dockerfile ├── jre25 │ └── Dockerfile └── update.sh ├── 9.3 ├── VERSION ├── jdk11 │ └── Dockerfile ├── jdk17 │ └── Dockerfile ├── jdk21 │ └── Dockerfile ├── jdk8 │ └── Dockerfile ├── jre11 │ └── Dockerfile ├── jre17 │ └── Dockerfile ├── jre21 │ └── Dockerfile ├── jre8 │ └── Dockerfile ├── onbuild-jdk8 │ └── Dockerfile └── update.sh ├── 9.4-dev ├── VERSION ├── jdk11 │ └── Dockerfile ├── jdk17 │ └── Dockerfile ├── jdk21 │ └── Dockerfile ├── jdk25 │ └── Dockerfile ├── jdk8 │ └── Dockerfile ├── jre11 │ └── Dockerfile ├── jre17 │ └── Dockerfile ├── jre21 │ └── Dockerfile ├── jre25 │ └── Dockerfile ├── jre8 │ └── Dockerfile └── update.sh ├── 9.4 ├── VERSION ├── jdk11 │ └── Dockerfile ├── jdk17 │ └── Dockerfile ├── jdk21 │ └── Dockerfile ├── jdk25 │ └── Dockerfile ├── jdk8 │ └── Dockerfile ├── jre11 │ └── Dockerfile ├── jre17 │ └── Dockerfile ├── jre21 │ └── Dockerfile ├── jre25 │ └── Dockerfile ├── jre8 │ └── Dockerfile ├── onbuild-jdk8 │ └── Dockerfile └── update.sh ├── LICENSE.md ├── README.md └── update.sh /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/Dockerfile-- 2 | -------------------------------------------------------------------------------- /10.0-dev/VERSION: -------------------------------------------------------------------------------- 1 | 10.0.3.0 2 | -------------------------------------------------------------------------------- /10.0-dev/jdk21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/10.0-dev/jdk21/Dockerfile -------------------------------------------------------------------------------- /10.0-dev/jdk25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/10.0-dev/jdk25/Dockerfile -------------------------------------------------------------------------------- /10.0-dev/jre21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/10.0-dev/jre21/Dockerfile -------------------------------------------------------------------------------- /10.0-dev/jre25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/10.0-dev/jre25/Dockerfile -------------------------------------------------------------------------------- /10.0-dev/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/10.0-dev/update.sh -------------------------------------------------------------------------------- /10.0/VERSION: -------------------------------------------------------------------------------- 1 | 10.0.2.0 2 | -------------------------------------------------------------------------------- /10.0/jdk21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/10.0/jdk21/Dockerfile -------------------------------------------------------------------------------- /10.0/jdk25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/10.0/jdk25/Dockerfile -------------------------------------------------------------------------------- /10.0/jre21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/10.0/jre21/Dockerfile -------------------------------------------------------------------------------- /10.0/jre25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/10.0/jre25/Dockerfile -------------------------------------------------------------------------------- /10.0/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/10.0/update.sh -------------------------------------------------------------------------------- /9.3/VERSION: -------------------------------------------------------------------------------- 1 | 9.3.15.0 2 | -------------------------------------------------------------------------------- /9.3/jdk11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.3/jdk11/Dockerfile -------------------------------------------------------------------------------- /9.3/jdk17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.3/jdk17/Dockerfile -------------------------------------------------------------------------------- /9.3/jdk21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.3/jdk21/Dockerfile -------------------------------------------------------------------------------- /9.3/jdk8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.3/jdk8/Dockerfile -------------------------------------------------------------------------------- /9.3/jre11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.3/jre11/Dockerfile -------------------------------------------------------------------------------- /9.3/jre17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.3/jre17/Dockerfile -------------------------------------------------------------------------------- /9.3/jre21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.3/jre21/Dockerfile -------------------------------------------------------------------------------- /9.3/jre8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.3/jre8/Dockerfile -------------------------------------------------------------------------------- /9.3/onbuild-jdk8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.3/onbuild-jdk8/Dockerfile -------------------------------------------------------------------------------- /9.3/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.3/update.sh -------------------------------------------------------------------------------- /9.4-dev/VERSION: -------------------------------------------------------------------------------- 1 | 9.4.15.0 2 | -------------------------------------------------------------------------------- /9.4-dev/jdk11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4-dev/jdk11/Dockerfile -------------------------------------------------------------------------------- /9.4-dev/jdk17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4-dev/jdk17/Dockerfile -------------------------------------------------------------------------------- /9.4-dev/jdk21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4-dev/jdk21/Dockerfile -------------------------------------------------------------------------------- /9.4-dev/jdk25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4-dev/jdk25/Dockerfile -------------------------------------------------------------------------------- /9.4-dev/jdk8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4-dev/jdk8/Dockerfile -------------------------------------------------------------------------------- /9.4-dev/jre11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4-dev/jre11/Dockerfile -------------------------------------------------------------------------------- /9.4-dev/jre17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4-dev/jre17/Dockerfile -------------------------------------------------------------------------------- /9.4-dev/jre21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4-dev/jre21/Dockerfile -------------------------------------------------------------------------------- /9.4-dev/jre25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4-dev/jre25/Dockerfile -------------------------------------------------------------------------------- /9.4-dev/jre8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4-dev/jre8/Dockerfile -------------------------------------------------------------------------------- /9.4-dev/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4-dev/update.sh -------------------------------------------------------------------------------- /9.4/VERSION: -------------------------------------------------------------------------------- 1 | 9.4.14.0 2 | -------------------------------------------------------------------------------- /9.4/jdk11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4/jdk11/Dockerfile -------------------------------------------------------------------------------- /9.4/jdk17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4/jdk17/Dockerfile -------------------------------------------------------------------------------- /9.4/jdk21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4/jdk21/Dockerfile -------------------------------------------------------------------------------- /9.4/jdk25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4/jdk25/Dockerfile -------------------------------------------------------------------------------- /9.4/jdk8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4/jdk8/Dockerfile -------------------------------------------------------------------------------- /9.4/jre11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4/jre11/Dockerfile -------------------------------------------------------------------------------- /9.4/jre17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4/jre17/Dockerfile -------------------------------------------------------------------------------- /9.4/jre21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4/jre21/Dockerfile -------------------------------------------------------------------------------- /9.4/jre25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4/jre25/Dockerfile -------------------------------------------------------------------------------- /9.4/jre8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4/jre8/Dockerfile -------------------------------------------------------------------------------- /9.4/onbuild-jdk8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4/onbuild-jdk8/Dockerfile -------------------------------------------------------------------------------- /9.4/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/9.4/update.sh -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/README.md -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jruby/docker-jruby/HEAD/update.sh --------------------------------------------------------------------------------