Instructions in the Dockerfile start from a base image, and then desired installations and modifications are done on top of that image.
Let's go over the steps to create our environment:
- We start from a base image, which is the basic Python image that is based on Debian:
FROM python:3.8
- We install useful packages that will particularly be used during the installation process ...