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 12aab55 commit 8cd8469Copy full SHA for 8cd8469
Dockerfile
@@ -1,14 +1,16 @@
1
# Running this container 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
-FROM --platform=$BUILDPLATFORM eclipse-temurin:11 AS builder
+ARG JDKVERSION=11
5
+
6
+FROM --platform=$BUILDPLATFORM eclipse-temurin:${JDKVERSION} AS builder
7
8
WORKDIR /src/kotlin-language-server
9
10
COPY . .
11
RUN ./gradlew :server:installDist
12
-FROM eclipse-temurin:11
13
+FROM eclipse-temurin:${JDKVERSION}
14
15
WORKDIR /opt/kotlin-language-server
16
0 commit comments