Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training

    Featured resources

    • Open Source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Red Hat UBI 8 builders have been promoted to the Paketo Buildpacks organization

Leverage the reliability of Red Hat Universal Base Image (UBI) for your Java and Node.js applications

May 6, 2026
Costas Papastathis
Related topics:
Application development and delivery
Related products:
Red Hat Enterprise Linux

    Over the past year, we worked to keep Red Hat Universal Base Image 8 (UBI) builders stable under the Paketo Community GitHub organization. Several fixes across Paketo Buildpacks repositories were necessary so UBI 8 builders could consistently build applications for Java and Node.js. We have good news! UBI 8 builders have been promoted from the Paketo Community GitHub organization to the Paketo Buildpacks GitHub organization (see RFC0062 and RFC0064 and the official announcement). UBI 8 builders have passed the testing and experimentation phase, and are now using the same maintenance and release patterns as other Paketo Buildpacks repositories.

    This change means some repositories have migrated from the Paketo Community organization to the Paketo Buildpacks organization:

    • Builder (formerly paketo-community/builder-ubi-base)
      • New repository: paketo-buildpacks/builder-ubi8-base
    • Buildpackless Builder (formerly paketo-community/builder-ubi-buildpackless-base)
      • New repository: paketo-buildpacks/builder-ubi8-buildpackless-base
    • Stacks/base images (formerly github.com/paketo-community/ubi-base-stack)
      • New repository: github.com/paketo-buildpacks/ubi8-base-stack
    • Node.js Extension (formerly paketo-community/ubi-nodejs-extension)
      • New repository: paketo-buildpacks/ubi-nodejs-extension

    In addition, the following images moved to a different namespace on Docker hub:

    • Builder image (formerly paketocommunity/builder-ubi-base)
      • New name: paketobuildpacks/builder-ubi8-base
    • Builder image (formerly paketocommunity/builder-ubi-buildpackless-base)
      • New name: paketobuildpacks/builder-ubi8-buildpackless-base
    • Run image (formerly paketocommunity/run-ubi-base)
      • New name: paketobuildpacks/run-ubi8-base
    • Build image (formerly paketocommunity/build-ubi-base)
      • New name: paketobuildpacks/build-ubi8-base

    For Node.js:

    • Extension (formerly paketocommunity/ubi-nodejs-extension)
      • New name: paketobuildpacks/ubi-nodejs-extension
    • Run image (formerly paketocommunity/run-nodejs-16-ubi-base)
      • New name: paketobuildpacks/run-nodejs-16-ubi8-base
    • Run image (formerly paketocommunity/run-nodejs-18-ubi-base)
      • New name: paketobuildpacks/run-nodejs-18-ubi8-base
    • Run image (formerly paketocommunity/run-nodejs-20-ubi-base)
      • New name: paketobuildpacks/run-nodejs-20-ubi8-base

    For Java:

    • Run image (formerly paketocommunity/run-java-8-ubi-base)
      • New name: paketobuildpacks/run-java-8-ubi8-base
    • Run image (formerly paketocommunity/run-java-11-ubi-base)
      • New name: paketobuildpacks/run-java-11-ubi8-base
    • Run image (formerly paketocommunity/run-java-17-ubi-base)
      • New name: paketobuildpacks/run-java-17-ubi8-base
    • Run image (formerly paketocommunity/run-java-21-ubi-base)
      • New name: paketobuildpacks/run-java-21-ubi8-base

    The previous container image names remain available on Docker Hub, but they will not receive updates.

    In case you've never used UBI to build an application, here are some simple examples to get you started.

    Build a Node.js application with UBI 8 and Paketo Buildpacks

    Before you begin, ensure that Podman (5.1.0 or greater) is installed. On Fedora, Podman is installed by default. Configure Podman according to Paketo Buildpacks documentation:

    First, start and enable the service using systemd:

    systemctl enable --user --now podman.socket

    Route the Docker command-line interface (CLI) to Podman:

    export DOCKER_HOST="unix://$(podman info \
    -f "{{.Host.RemoteSocket.Path}}")"

    Install pack CLI

    Next, you must install the pack command:

    dnf install pack

    Currently, the extension is in the experimental phase, and therefore the experimental features must be enabled:

    pack config experimental true

    Building a Node.js application

    For this example, you can use any Node.js application you might have locally. If you need a sample application, clone the Paketo Buildpacks samples repository:

    git clone https://github.com/paketo-buildpacks/samples

    Build the Node.js application with pack and the ubi8-base-builder builder:

    pack --docker-host=inherit build my-node-app \
    --builder index.docker.io/paketobuildpacks/builder-ubi8-base \  --path ./samples/nodejs/npm

    When the build finishes, the image name appears at the end of the build logs:

    Successfully built image my-node-app

    To run the application, use Podman:

    podman run -d -p 8080:8080 my-node-app

    With the container listening on port 8080, confirm that the app responds:

    curl http://localhost:8080

    You get an HTTP/1.1 200 OK response followed by HTML content. It works!

    Conclusion

    The promotion of the Red Hat UBI 8 builders to the main Paketo Buildpacks organization means these assets have moved beyond the testing phase and are ready for you to use. Try the new repository and container images out for your own Java and Node.js applications!

    Related Posts

    • Unlocking UBI to Red Hat Enterprise Linux container images

    • Running applications with Paketo Buildpacks and Red Hat UBI container images in OpenShift

    • Build applications with Paketo Buildpacks and Red Hat UBI container images

    • What's new in the Red Hat UBI OpenJDK containers

    • Build lean Node.js container images with UBI and Podman

    • Build lightweight and secure container images using RHEL UBI

    Recent Posts

    • Red Hat UBI 8 builders have been promoted to the Paketo Buildpacks organization

    • Using eBPF in Red Hat products

    • How we made one data layer serve the UI, the mocks, and the E2E tests

    • Build trusted Python containers with Project Hummingbird and Calunga

    • Simplify distributed tracing: ObservabilityInstaller installation

    What’s up next?

    Share graphics_Red Hat universal base image

    Red Hat Universal Base Images (UBI)

    Mike Guerette
    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility