1
0
mirror of https://github.com/octoleo/plantuml-server.git synced 2024-06-09 03:32:31 +00:00
plantuml-server/Dockerfile.tomcat

23 lines
581 B
Docker
Raw Normal View History

FROM maven:3-jdk-8 AS builder
COPY pom.xml /app/
COPY src /app/src/
WORKDIR /app
RUN mvn --batch-mode --define java.net.useSystemProxies=true package
########################################################################################
FROM tomcat:9
MAINTAINER D.Ducatel
RUN apt-get update && \
apt-get install -y --no-install-recommends graphviz fonts-wqy-zenhei && \
2017-12-13 09:31:39 +00:00
apt-get clean
ENV GRAPHVIZ_DOT=/usr/bin/dot
ARG BASE_URL=ROOT
RUN rm -rf /usr/local/tomcat/webapps/$BASE_URL
COPY --from=builder /app/target/plantuml.war /usr/local/tomcat/webapps/$BASE_URL.war