Day 11: Steps to Push a simple web application (flask) Image to Docker
GitHub link to the application code: https://github.com/VandanaPandit/simple-webapp-flask.git
First, let's containerize this web application and check if it works successfully.
Create Dockerfile:
FROM ubuntu:20.04
RUN apt-get update && apt-get instal...
vandanapandit.hashnode.dev2 min read