META-INF.jreleaser.templates.jlink.docker.Dockerfile.tpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jreleaser-templates Show documentation
Show all versions of jreleaser-templates Show documentation
JReleaser packager templates
The newest version!
# {{jreleaserCreationStamp}}
FROM {{dockerBaseImage}}
{{#dockerLabels}}
LABEL {{.}}
{{/dockerLabels}}
{{#dockerPreCommands}}
{{.}}
{{/dockerPreCommands}}
COPY assembly/ /
RUN unzip {{distributionArtifactFile}} && \
rm {{distributionArtifactFile}} && \
chmod +x {{distributionArtifactRootEntryName}}/bin/{{distributionExecutableUnix}} && \
chmod +x {{distributionArtifactRootEntryName}}/bin/java
{{#dockerPostCommands}}
{{.}}
{{/dockerPostCommands}}
ENV JAVA_HOME="/{{distributionArtifactRootEntryName}}"
ENV PATH="${PATH}:${JAVA_HOME}/bin"
ENTRYPOINT ["/{{distributionArtifactRootEntryName}}/bin/{{distributionExecutableUnix}}"]