I have read this question and I understand that you need some kind of foundation to build your docker image. However, I still don't see the purpose of docker images like python.
Why do I need this:
FROM python:latest
when I can just do that:
FROM ubuntu
RUN apt install python3
Say I want to run a container where a python server is hosted using apache. What would be the difference between
- Using the apache base image and installing python manually
- Using the python base image and installing apache manually
- Using the ubuntu base image and installing both manually