Docker Basics Part4
Custom Docker Image
Create a folder named docker in vs code. Then add a file named ‘Dockerfile’ with no extension.
##Inside Dockerfile
FROM nginx
COPY index.html /usr/share/nginx/html/
Understanding the Dockerfile:
FROM nginx: This line specifies t...
asitmohanty.hashnode.dev7 min read