FROM ubuntu:22.04 # Avoid interactive prompts ENV DEBIAN_FRONTEND=noninteractive # Install build dependencies and tools RUN apt-get update && apt-get install -y \ # Build essentials curl \ wget \ git \ jq \ ca-certificates \ # Docker docker.io \ # Utilities bash \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* # Set working directory WORKDIR /workspace