FROM ubuntu:20.04

ENV TZ=Etc/UTC
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

RUN apt-get update && apt-get install -y \
    build-essential \
    curl \
    cmake \
    git \
    help2man \
    lsb-release \
    python3 \
    python3-pip \
    rpm

RUN pip install cget
