Docker image
Create a Dockerfile
# Always start with baseimage -> ubuntu
FROM ubuntu
RUN apt update -y
RUN apt install nginx -y
VOLUME [ "/var/www/html" ] # Information only
LABEL version="1" description="This is alpha image"
RUN apt install...
akashak14.hashnode.dev2 min read