META-INF.jreleaser.templates.flat-binary.docker.Dockerfile-remote.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}}
RUN curl -Ls "{{distributionUrl}}" --output {{distributionArtifactFile}} && \
mv {{distributionArtifactFile}} {{distributionExecutableName}} &&
chmod +x {{distributionExecutableName}}
{{#dockerPostCommands}}
{{.}}
{{/dockerPostCommands}}
ENV PATH="${PATH}:/"
ENTRYPOINT ["/{{distributionExecutableName}}"]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy