diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000..5a90762b9b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM node:18 +WORKDIR /usr/src/app +COPY . . +RUN npm install +RUN npm run build +EXPOSE 5678 +CMD ["n8n", "start"]