{"id":21273277,"url":"https://github.com/sclorg/s2i-base-container","last_synced_at":"2025-07-20T22:34:39.281Z","repository":{"id":26856790,"uuid":"30316765","full_name":"sclorg/s2i-base-container","owner":"sclorg","description":" OpenShift base images","archived":false,"fork":false,"pushed_at":"2025-05-21T08:01:13.000Z","size":326,"stargazers_count":88,"open_issues_count":2,"forks_count":140,"subscribers_count":21,"default_branch":"master","last_synced_at":"2025-05-21T09:24:04.291Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sclorg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2015-02-04T19:27:52.000Z","updated_at":"2025-05-21T08:01:16.000Z","dependencies_parsed_at":"2023-11-20T10:36:38.864Z","dependency_job_id":"36495314-7229-468e-a4fe-a487da7e6322","html_url":"https://github.com/sclorg/s2i-base-container","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sclorg/s2i-base-container","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sclorg%2Fs2i-base-container","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sclorg%2Fs2i-base-container/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sclorg%2Fs2i-base-container/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sclorg%2Fs2i-base-container/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sclorg","download_url":"https://codeload.github.com/sclorg/s2i-base-container/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sclorg%2Fs2i-base-container/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266210928,"owners_count":23893343,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-21T09:13:17.190Z","updated_at":"2025-07-20T22:34:39.265Z","avatar_url":"https://github.com/sclorg.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"OpenShift base images\n========================================\n\n[![Build and push images to Quay.io registry](https://github.com/sclorg/s2i-base-container/actions/workflows/build-and-push.yml/badge.svg)](https://github.com/sclorg/s2i-base-container/actions/workflows/build-and-push.yml)\n\nImages available on Quay are:\n* CentOS Stream 9 [s2i-core](https://quay.io/repository/sclorg/s2i-core-c9s)\n* CentOS Stream 9 [s2i-base](https://quay.io/repository/sclorg/s2i-base-c9s)\n* CentOS Stream 10 [s2i-core](https://quay.io/repository/sclorg/s2i-core-c10s)\n* CentOS Stream 10 [s2i-base](https://quay.io/repository/sclorg/s2i-base-c10s)\n* Fedora [s2i-core](https://quay.io/repository/fedora/s2i-core)\n* Fedora [s2i-base](https://quay.io/repository/fedora/s2i-base)\n\nThis repository contains Dockerfiles which serve as base images for various OpenShift images.\n\nVersions\n---------------------------------\ns2i image versions currently provided are:\n* [core](core/README.md) - rhel8 base + s2i settings\n* [base](base/README.md) - s2i-core + development libraries + npm\n\nRHEL versions currently supported are:\n* RHEL8\n* RHEL9\n* RHEL10\n\nCentOS versions currently supported are:\n* CentOS Stream 9\n* CentOS Stream 10\n\nFor more information about contributing, see\n[the Contribution Guidelines](https://github.com/sclorg/welcome/blob/master/contribution.md).\nFor more information about concepts used in these container images, see the\n[Landing page](https://github.com/sclorg/welcome).\n\n\nInstallation\n---------------\nTo build a S2I base image, choose either the CentOS Stream or RHEL based image:\n*  **RHEL based image**\n\n    This image is available in Red Hat Container Registry. To download it run:\n\n    ```\n    $ podman pull registry.access.redhat.com/rhel8/s2i-base\n    ```\n\n    Or\n\n    ```\n    $ podman pull registry.access.redhat.com/rhel8/s2i-core\n    ```\n\n    To build a RHEL based S2I base image, you need to run the build on a properly\n    subscribed RHEL machine.\n\n    ```\n    $ git clone --recursive https://github.com/sclorg/s2i-base-container.git\n    $ cd s2i-base-container\n    $ git submodule update --init\n    $ make build TARGET=rhel8 VERSIONS=base\n    ```\n\n*  **CentOS Stream based image**\n\n    This image is available on DockerHub. To download it run:\n\n    ```\n    $ podman pull quay.io/sclorg/s2i-base-c9s\n    ```\n\n    Or\n\n    ```\n    $ podman pull quay.io/sclorg/s2i-core-c9s\n    ```\n\n    To build a S2I base image from scratch run:\n\n    ```\n    $ git clone --recursive https://github.com/sclorg/s2i-base-container.git\n    $ cd s2i-base-container\n    $ git submodule update --init\n    $ make build TARGET=c9s VERSIONS=base\n    ```\n\nNote: while the installation steps are calling `podman`, you can replace any such calls by `docker` with the same arguments.\n\n**Notice: By omitting the `VERSIONS` parameter, the build/test action will be performed\non all provided versions of S2I base image.**\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsclorg%2Fs2i-base-container","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsclorg%2Fs2i-base-container","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsclorg%2Fs2i-base-container/lists"}