mirror of
https://github.com/10h30/sinric-n8n-bridge.git
synced 2026-05-12 15:21:23 +09:00
11 lines
114 B
Docker
11 lines
114 B
Docker
FROM node:22-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json .
|
|
RUN npm install
|
|
|
|
COPY index.js .
|
|
|
|
CMD ["node", "index.js"]
|