mirror of
https://github.com/octoleo/plantuml-server.git
synced 2024-11-16 17:25:13 +00:00
9 lines
230 B
Docker
9 lines
230 B
Docker
|
FROM tomcat:9
|
||
|
MAINTAINER D.Ducatel
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get install -y --no-install-recommends graphviz fonts-wqy-zenhei && \
|
||
|
rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
ADD target/plantuml.war /usr/local/tomcat/webapps/ROOT.war
|