feat(node-agent): add Dockerfile

This commit is contained in:
Zac Gaetano 2026-05-20 13:47:57 -04:00
parent feb78b8bcb
commit 0bc1ac9161

View file

@ -0,0 +1,4 @@
FROM node:22-alpine
WORKDIR /app
COPY package.json index.js ./
CMD ["node", "index.js"]