mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-28 14:12:24 -05:00
Create Dockerfile
Paso 1 Dockerfile.
This commit is contained in:
parent
b2ba2d1cf1
commit
239049066d
1 changed files with 8 additions and 0 deletions
8
Dockerfile
Normal file
8
Dockerfile
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
FROM node:20.17.0
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
COPY . .
|
||||
EXPOSE 5678
|
||||
CMD [ "npm", "start" ]
|
||||
Loading…
Add table
Add a link
Reference in a new issue