Dockerfile or docker image for jboss/openjdk18-rhel7:1.1

599 Views Asked by At

Where can I find the docker image (and if possible Dockerfile) for the image jboss/openjdk18-rhel7:1.1

This image is being used in another dockerfile

FROM jboss/openjdk18-rhel7:1.1

ENV \

   PATH="$PATH:"/usr/local/s2i""
1

There are 1 best solutions below

2
On

By default, that means docker will pull an image from the url https://hub.docker.com/jboss/openjdk18-rhel7/ but the repository does not seem exist for me.

Perhaps, you could using https://hub.docker.com/r/jboss/base-jdk/ instead from the same maintainer, like so: FROM jboss/base-jdk:8

For Dockerfile, see https://hub.docker.com/r/jboss/base-jdk/~/dockerfile/