1
0

create dockerfile

This commit is contained in:
Ahmed Nour Eldin
2022-07-18 03:23:27 +02:00
committed by GitHub
parent a2e165fa85
commit 6162577279
+10
View File
@@ -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"]