Sign inSign up

rbashish/ubuntu

By rbashish

Updated 4 months ago

Ubuntu LTS images updated with current security fixes.

Image
Operating systems
1

46

rbashish/ubuntu repository overview

Custom Patched Ubuntu Base Images

This repository contains unofficial, custom-built Ubuntu base images that are regularly updated with the latest security patches, software updates, and minor performance optimizations. These images serve as a reliable, production-ready foundation for your containerized applications.

Available Tags

  • 24.04-patched - Ubuntu 24.04 LTS (Noble Numbat) base image with all standard security updates pre-applied.

Image Highlights

  • Security First: Pre-executed apt-get update && apt-get upgrade to eliminate initial vulnerability scans.
  • Minimal Footprint: Cleans up temporary package caches (rm -rf /var/lib/apt/lists/*) to keep the layer size as lean as possible.
  • Standardized Base: Maintains full compatibility with official Ubuntu configurations.

Quick Start

1. Pull the Image

To download the patched Ubuntu 24.04 image to your local machine, run:

docker pull rbashish/ubuntu:24.04-patched
2. Run an Interactive Container

To spin up a quick, interactive bash shell inside the container:

docker run -it rbashish/ubuntu:24.04-patched /bin/bash
3. Use as a Base Image in a Dockerfile

To build your own application on top of this secure base, reference it at the top of your Dockerfile:

FROM rbashish/ubuntu:24.04-patched

# Add your custom setup below
RUN apt-get update && apt-get install -y curl
WORKDIR /app

Maintenance & Support

This image is updated periodically to ensure newly released critical and high CVE patches are baked directly into the base layer.

For issues, feature requests, or custom build needs, please contact the repository owner.

Tag summary

Content type

Image

Digest

sha256:1c85e688f

Size

30 MB

Last updated

4 months ago

docker pull rbashish/ubuntu:24.04-patched