FROM ubuntu:focal

RUN apt-get --yes update \
 && apt-get install --yes --no-install-recommends \
    git \
    make \
    openssh-client \
    python3-pip \
 && rm -rf /var/lib/apt/lists/*

RUN python3 -m pip install --no-cache-dir j2cli
