diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..b6725176 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM node:slim + +RUN mkdir /space +RUN chown node:node /space +USER node +WORKDIR /space + +EXPOSE 3000 + +CMD ["sh","-c","npx --yes @silverbulletmd/server --port 3000 /space"] \ No newline at end of file