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

16 lines
423 B
Docker
Raw Normal View History

FROM openjdk:17-alpine
ARG PLANTUML_VERSION=1.2022.6
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/v${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"]