We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1501f11 + cf305b9 commit 0e6771bCopy full SHA for 0e6771b
1 file changed
Dockerfile
@@ -0,0 +1,11 @@
1
+FROM node:lts
2
+
3
+WORKDIR /yaml-language-server
4
5
+COPY . .
6
7
+RUN yarn install && \
8
+ yarn run build
9
10
+ENTRYPOINT [ "node", "./out/server/src/server.js" ]
11
+CMD [ "--stdio" ]
0 commit comments