We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51f9c9c commit cf305b9Copy full SHA for cf305b9
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