# Overview This is the PSI rhel8 docker developer image. It contains most developer tools especially for building rpms, etc. # Usage The image can be used as follows: ```bash docker run -it --rm container.psi.ch/images/rhel8-developer ``` To base other images upon this image use ```dockerfile FROM container.psi.ch/images/rhel8-developer ``` in your Dockerfile # Build To build the image use: ```bash docker build --platform linux/x86_64 -t container.psi.ch/images/rhel8-developer . ``` To push the image to the central container registry do: ```bash docker login container.psi.ch docker push container.psi.ch/images/rhel8-developer ```