Initialize sinric-n8n-bridge with Docker setup, environment configuration, and core functionality

This commit is contained in:
2026-05-11 04:17:54 +00:00
commit 4f386ee3ed
7 changed files with 93 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM node:22-alpine
WORKDIR /app
COPY package.json .
RUN npm install
COPY index.js .
CMD ["node", "index.js"]