Deploying first nodejs application in Kubernetes cluster
Step1. Create a docker image of Nodejs app, build it and Push to docker hub.
Node Image repo link of dockerhub:- https://hub.docker.com/r/sidharthhhh/node
Docker file code
FROM node:latest
COPY . /home/app
WORKDIR /home/app/
RUN npm install
EXPOS...
sidharthhhh.hashnode.dev2 min read