mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-28 22:12:26 -05:00
8 lines
122 B
Docker
8 lines
122 B
Docker
FROM node:20.17.0
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
COPY . .
|
|
EXPOSE 5678
|
|
CMD [ "npm", "start" ]
|