By removing our need to use bintray for releases and instead deploying directly to maven central, we can reduce the risk of issues. Related issue: #1417, #1419
7 lines
145 B
Docker
7 lines
145 B
Docker
FROM adoptopenjdk/openjdk8:latest
|
|
|
|
RUN apt-get update && apt-get install -y graphviz jq gpg
|
|
|
|
RUN apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|