1
0
mirror of https://github.com/octoleo/plantuml-server.git synced 2024-09-27 22:49:03 +00:00
plantuml-server/Dockerfile

8 lines
186 B
Docker
Raw Normal View History

2017-01-26 07:32:35 +00:00
FROM maven:3-jdk-8
2017-03-07 15:10:36 +00:00
RUN apt-get update && apt-get install -y --no-install-recommends graphviz && rm -rf /var/lib/apt/lists/*
2017-01-26 07:32:35 +00:00
ADD . /app
WORKDIR /app
EXPOSE 8080
CMD ["mvn", "jetty:run"]