Dockerizing the django app step-by-step procedure.
Launch EC2 instance. >> Ubuntu >> t2.micro >> Access the instance using ssh.
Update the Ubuntu OS:
sudo apt update
Create project directory
mkdir project
cd project
Clone the git repository:
git clone https://github.com/shreys7/django-todo.git
...