Automate End To End Deploy Angular and Node Js Application Using Terraform/GitHub actions - Part1

Опубликовано: 14 Июнь 2026
на канале: Learning never ends with Changan
577
10

This will give a idea about the client server architecture deployment Application.
Node JS As Server
Angular as Frontend
Atlas MongoDB as DB


To Check out the previous video about Terraform:
Create Instance Install Docker using Terraform
   • Create Instance Install Docker using Terra...  

To Checkout the used application manually how we did:
Deploy Angular App in Docker AWS EC2 (Node JS and MongoDB)- Part 2
   • Deploy Angular App in Docker AWS EC2 (Node...  

Docker File content not showed in the video: For who is beginners, i am giving content here..

FROM node:14-alpine

WORKDIR /app

COPY package.json .

COPY package-lock.json .


RUN npm ci

COPY . .

EXPOSE 3000

CMD ["node","index.js"]