FROM fedora:41-minimal
RUN microdnf install -y \
    bash coreutils findutils grep sed gawk \
    curl wget jq ca-certificates less vim-minimal \
    openssh-clients \
    && microdnf clean all

RUN useradd -m -s /bin/bash operator
USER operator
WORKDIR /home/operator
CMD ["/bin/bash"]
