1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-12-26 20:31:01 +00:00

Merge pull request #1130 from MOZGIII/docker-fixes

Minor corrections to Dockerfile
This commit is contained in:
PlantUML 2022-09-24 23:55:56 +02:00 committed by GitHub
commit 368da723f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 7 deletions

1
.dockerignore Normal file
View File

@ -0,0 +1 @@
**

View File

@ -21,3 +21,7 @@ trim_trailing_whitespace = false
[{pom.xml, *.yml}]
indent_style = space
[Dockerfile]
indent_style = space
indent_size = 2

View File

@ -1,16 +1,26 @@
FROM openjdk:17-alpine
FROM alpine:latest AS loader
ARG PLANTUML_VERSION=v1.2022.6
ARG PLANTUML_VERSION
RUN apk add --no-cache \
wget \
ca-certificates
RUN wget \
"https://github.com/plantuml/plantuml/releases/download/${PLANTUML_VERSION}/plantuml-${PLANTUML_VERSION#?}.jar" \
-O /opt/plantuml.jar
FROM openjdk:17-alpine
ENV LANG en_US.UTF-8
RUN \
apk add --no-cache graphviz wget ca-certificates ttf-dejavu && \
wget "https://github.com/plantuml/plantuml/releases/download/${PLANTUML_VERSION}/plantuml-${PLANTUML_VERSION#?}.jar" -O /opt/plantuml.jar && \
apk del wget ca-certificates
RUN apk add --no-cache \
graphviz \
ttf-dejavu
COPY --from=loader /opt/plantuml.jar /opt/plantuml.jar
WORKDIR /data
VOLUME ["/data"]
ENTRYPOINT ["java", "-jar", "/opt/plantuml.jar"]
CMD ["-version"]