Deploying Node.js Application in Kubernetes
Create a NodeJS application
npm init
npm install express
Create index.js and paste the following code
Create Docker file
FROM node:17-alpine This line specifies the base image to use for the container.
WORKDIR /usr/src/app This line sets t...
zainabmirkar.hashnode.dev3 min read
Aliraza Khan
Documenting my journey of technology
Awesome🔥