| 12345678910111213141516171819 | #=================# Compile CPython 3.6.9 from sourceRUN apt-get update && apt-get install -y zlib1g-dev libssl-devRUN apt-get update && apt-get install -y jq build-essential libffi-devRUN cd /tmp && ${'\\'}    wget -q https://www.python.org/ftp/python/3.6.9/Python-3.6.9.tgz && ${'\\'}    tar xzvf Python-3.6.9.tgz && ${'\\'}    cd Python-3.6.9 && ${'\\'}    ./configure && ${'\\'}    make installRUN cd /tmp && ${'\\'}    echo "ff7cdaef4846c89c1ec0d7b709bbd54d Python-3.6.9.tgz" > checksum.md5 && ${'\\'}    md5sum -c checksum.md5RUN python3.6 -m ensurepip && ${'\\'}    python3.6 -m pip install coverage
 |