Skip to content

Commit b05ea94

Browse files
committed
Use JDK 11 both for building and the final image in the Dockerfile
1 parent c4cb596 commit b05ea94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Running this container will start a language server that listens for TCP connections on port 2088
22
# Every connection will be run in a forked child process
33

4-
FROM alpine:3.10 AS builder
4+
FROM openjdk:11 AS builder
55

66
WORKDIR /kotlin-language-server
77
COPY . .
88
RUN ./gradlew :server:installDist
99

10-
FROM openjdk:10
10+
FROM openjdk:11
1111

1212
WORKDIR /
1313
COPY --from=builder /kotlin-language-server/server/build/install/server .

0 commit comments

Comments
 (0)