META-INF.jreleaser.templates.binary.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 chmod +x {{distributionArtifactRootEntryName}}/bin/{{distributionExecutableUnix}}
{{#dockerPostCommands}}
{{.}}
{{/dockerPostCommands}}
ENV PATH="${PATH}:/{{distributionArtifactRootEntryName}}/bin"
ENTRYPOINT ["/{{distributionArtifactRootEntryName}}/bin/{{distributionExecutableUnix}}"]