Skip to content

Commit 7cc52f7

Browse files
committed
Update Ubuntu, Java, Kotlin and Kscript versions
1 parent bc7f10f commit 7cc52f7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# lchmod (file attributes) error: Not supported
33
# https://bugs.alpinelinux.org/issues/8089
44

5-
FROM ubuntu:cosmic
5+
FROM ubuntu:eoan
66

77
MAINTAINER serandel@gmail.com
88

@@ -16,10 +16,10 @@ RUN apt-get update && \
1616
RUN curl -s "https://get.sdkman.io" | bash
1717

1818
RUN source /root/.sdkman/bin/sdkman-init.sh && \
19-
sdk install java 8.0.202-zulu && \
19+
sdk install java 8.0.232.fx-zulu && \
2020
sdk install maven 3.6.0 && \
21-
sdk install kotlin 1.3.21 && \
22-
sdk install kscript 2.7.1
21+
sdk install kotlin 1.4.10 && \
22+
sdk install kscript 2.9.3
2323

2424
ENTRYPOINT source /root/.sdkman/bin/sdkman-init.sh && /usr/bin/env kscript "$0" "$@"
2525
CMD [ "--help" ]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The base image is Ubuntu, with Java, Maven, Kotlin and kscript installed with [S
1616

1717
`docker run -i serandel/kscript - < script.kts`
1818

19-
This will make kscript read the code from `stdin` while piping the file. Beware that the `-i` flag is needed to have `stdout` redirected outside the container.
19+
This will make kscript read the code from `stdin` while piping the file. Be aware that the `-i` flag is needed to have `stdout` redirected outside the container.
2020

2121
## Volume
2222

0 commit comments

Comments
 (0)