Installing Python in Docker - one layer


The same as earlier, but now we merged the 3 RUN commands into one, so we have less levels in the history.

examples/old-python-2/Dockerfile
FROM ubuntu:20.04
RUN apt-get update && \
    apt-get upgrade -y && \
    apt-get install -y python3

$ docker build -t mydocker2 .