Riley
Riley

Reputation: 31

DotnetCore Custom S2i OpenShift Image

I am looking to create a custom S2i image for dotnetcore 3.1

I could not find much examples in OpenShift documentation

Can anyone provide some example reference of any custom image built for S2i in dotnetcore 3.1

Also looking on how to get this image to OpenShift so that it can be used in "oc new-app" command

Upvotes: 0

Views: 171

Answers (1)

omajid
omajid

Reputation: 15223

This is the source code for the official s2i images for .NET Core 3.1 that Red Hat builds https://github.com/redhat-developer/s2i-dotnetcore/tree/master/3.1

The s2i image is a regular container image. You can get it into OpenShift using any of the other ways you get container images into OpenShift. ImagesStreams might be a good way.

Upvotes: 1

Related Questions