[add] wsdd

This commit is contained in:
Andy Bunce 2021-12-19 22:40:24 +00:00
parent 24e104f75a
commit 8778b2719c
11 changed files with 60 additions and 10 deletions

7
plantuml/DockerFile Normal file
View file

@ -0,0 +1,7 @@
FROM openjdk:8u181-jdk-alpine3.8
LABEL maintainer="Rob Bell"
ARG PLANTUML_VERSION=1.2020.0
RUN apk add --no-cache graphviz wget ttf-dejavu && \
wget "http://sourceforge.net/projects/plantuml/files/plantuml.${PLANTUML_VERSION}.jar/download" -O plantuml.jar
ENTRYPOINT ["java", "-jar", "plantuml.jar"]
CMD ["-p"]