Upgrade to Java 17 and Spring Framework 6. Switch to JakartaEE 9 version of the Servlet API. Drop support for Joda Time. Configure Kotlin plugin to target JDK 1.8 as it doesn't support 17, yet.
9 lines
190 B
Docker
9 lines
190 B
Docker
FROM openjdk:17-bullseye
|
|
|
|
RUN sed -i -e 's/http/https/g' /etc/apt/sources.list
|
|
|
|
RUN apt-get update && apt-get install -y graphviz jq gpg
|
|
|
|
RUN apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|