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.
2 parents 5719cd4 + dcf77ba commit ba66720Copy full SHA for ba66720
Dockerfile
@@ -1,14 +1,16 @@
1
# Running this image will start a language server that listens for TCP connections on port 49100
2
# Every connection will be run in a forked child process
3
4
-ARG JDKVERSION=11
+ARG JDKVERSION=17
5
6
FROM --platform=$BUILDPLATFORM eclipse-temurin:${JDKVERSION} AS builder
7
8
+ARG JDKVERSION
9
+
10
WORKDIR /src/kotlin-language-server
11
12
COPY . .
-RUN ./gradlew :server:installDist
13
+RUN ./gradlew :server:installDist -PjavaVersion=${JDKVERSION}
14
15
FROM eclipse-temurin:${JDKVERSION}
16
0 commit comments