mirror of
https://github.com/octoleo/plantuml-server.git
synced 2024-12-22 16:58:54 +00:00
9 lines
224 B
Docker
9 lines
224 B
Docker
|
FROM jetty
|
||
|
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 /var/lib/jetty/webapps/ROOT.war
|