# Node base image FROM node:22-alpine WORKDIR $HOME/app # Clone HeyGen Github repository in app folder RUN git clone https://github.com/mbarnig/InteractiveAvatarNextJSDemo.git $HOME/app # Show content RUN ls -a # Loading Dependencies RUN npm install RUN npm run dev # Expose application's default port EXPOSE 3000 # Command to start the application CMD ["npm", "run", "dev"]