YASH-OG/multi_agentic_system
0
1FROM node:202 3# Install http-server to serve the static site4RUN npm install -g http-server5 6# Build the app7WORKDIR /usr/app8COPY ./ /usr/app9RUN npm install 10RUN npm run sources && npm run build11 12# Expose port 786013EXPOSE 786014 15# Serve the static site from the /usr/app/build directory on host 0.0.0.0 and port 786016CMD ["http-server", "/usr/app/build", "-a", "0.0.0.0", "-p", "7860"]