
Ref - https://e2b.dev/docs/sandbox-template
brew install e2b
or
npm i -g @e2b/cli
e2b auth login
FROM e2bdev/code-interpreter:latest
# Set working directory
WORKDIR /home/user
# Install Vite (React template) and TailwindCSS
RUN npm create vite@latest . -- --template react && \\
npm install
e2b template build -c "npm run dev"

