mirror of
https://github.com/octoleo/plantuml-server.git
synced 2024-11-18 02:05:12 +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
|