1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-13 21:52:27 +00:00
plantuml/Dockerfile
2022-09-24 22:52:12 +04:00

16 lines
415 B
Docker

FROM openjdk:17-alpine
ARG PLANTUML_VERSION
ENV LANG en_US.UTF-8
RUN \
apk add --no-cache graphviz wget ca-certificates ttf-dejavu && \
wget "https://github.com/plantuml/plantuml/releases/download/${PLANTUML_VERSION}/plantuml-${PLANTUML_VERSION#?}.jar" -O /opt/plantuml.jar && \
apk del wget ca-certificates
WORKDIR /data
VOLUME ["/data"]
ENTRYPOINT ["java", "-jar", "/opt/plantuml.jar"]
CMD ["-version"]