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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

10
Dockerfile Normal file
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"]