All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.jreleaser.templates.flat-binary.docker.Dockerfile-remote.tpl Maven / Gradle / Ivy

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