FROM ubuntu:24.04

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update && apt-get install -y --no-install-recommends \
        build-essential \
        cmake \
        ninja-build \
        git \
        libasio-dev \
        libyaml-cpp-dev \
        python3 \
        python3-yaml \
        ca-certificates \
        bash \
        tshark \
        tcpdump \
        clang \
        libclang-rt-18-dev \
    && rm -rf /var/lib/apt/lists/*

WORKDIR /app
