Refactor Dockerfile to use build argument for Ubuntu version and update README.md with detailed features and installation instructions

This commit is contained in:
2025-12-08 19:29:55 +01:00
parent 8a28db072b
commit 16b1540876
2 changed files with 56 additions and 6 deletions

View File

@@ -1,7 +1,9 @@
FROM ubuntu:24.04
ARG UBUNTU_VERSION=24.04
FROM ubuntu:${UBUNTU_VERSION}
LABEL maintainer="thommyho"
LABEL description="An Ubuntu 24.04 image with essential tools for git development and CI/CD pipelines."
LABEL description="An Ubuntu image with essential tools for git development and CI/CD pipelines."
ENV NVM_DIR=/usr/local/nvm \
NODE_VERSION=24.11.1 \