Ubuntu LTS images updated with current security fixes.
46
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.
24.04-patched - Ubuntu 24.04 LTS (Noble Numbat) base image with all standard security updates pre-applied.apt-get update && apt-get upgrade to eliminate initial vulnerability scans.rm -rf /var/lib/apt/lists/*) to keep the layer size as lean as possible.To download the patched Ubuntu 24.04 image to your local machine, run:
docker pull rbashish/ubuntu:24.04-patched
To spin up a quick, interactive bash shell inside the container:
docker run -it rbashish/ubuntu:24.04-patched /bin/bash
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
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.
Content type
Image
Digest
sha256:1c85e688f…
Size
30 MB
Last updated
4 months ago
docker pull rbashish/ubuntu:24.04-patched