FROM fedora:latest

RUN dnf install -y \
    git \
    nodejs \
    npm \
    curl \
    wget \
    jq \
    tar \
    xz \
    findutils \
    which \
    gcc \
    make \
    && dnf clean all

