You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
433 B
11 lines
433 B
FROM openjdk:14-jdk-alpine3.10
|
|
|
|
ENV PLANTUML_VERSION=1.2020.9
|
|
ENV LANG en_US.UTF-8
|
|
|
|
RUN \
|
|
apk add --no-cache graphviz wget ca-certificates ttf-dejavu fontconfig && \
|
|
wget "http://downloads.sourceforge.net/project/plantuml/${PLANTUML_VERSION}/plantuml.${PLANTUML_VERSION}.jar" -O plantuml.jar && \
|
|
apk del wget ca-certificates
|
|
RUN ["java", "-Djava.awt.headless=true", "-jar", "plantuml.jar", "-version"]
|
|
RUN ["dot", "-version"]
|