Create Dockerfile

This commit is contained in:
i-k-99 2025-03-05 14:12:56 +00:00 committed by GitHub
parent 8790a0df3d
commit 92ec2a2450
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

7
Dockerfile Normal file
View file

@ -0,0 +1,7 @@
FROM node:18
WORKDIR /usr/src/app
COPY . .
RUN npm install
RUN npm run build
EXPOSE 5678
CMD ["n8n", "start"]