Files
spring-hateoas/ci/Dockerfile
Oliver Drotbohm 9352e56358 #1639 - Prepare 2.0 development.
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.
2022-01-14 12:05:11 +01:00

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/*