We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe5e6db commit d428d22Copy full SHA for d428d22
Dockerfile
@@ -1,12 +1,13 @@
1
# Running this container will start a language server that listens for TCP connections on port 2088
2
# Every connection will be run in a forked child process
3
4
-# Please note that before building the image, you have to build the language server with `./gradlew build`
+# Please note that before building the image, you have to build the language server with `./gradlew :server:installDist`
5
6
FROM openjdk:10
7
8
-COPY ./build/install ./
+WORKDIR /
9
+COPY server/build/install/server .
10
11
EXPOSE 2088
12
-CMD ["./kotlin-language-server/bin/kotlin-language-server", "--tcp-server=0:2088"]
13
+CMD ["/server/bin/kotlin-language-server", "--tcpPort=2088"]
0 commit comments