Uses of Interface
org.springframework.boot.buildpack.platform.io.TarArchive
Package
Description
Central API for performing a buildpack build.
A limited Docker API providing the operations needed by pack.
Docker types.
IO classes and utilities.
-
Uses of TarArchive in org.springframework.boot.buildpack.platform.build
Modifier and TypeMethodDescriptionBuildRequest.getApplicationContent
(Owner owner) Return aTarArchive
containing the application content that the buildpack should package.Modifier and TypeMethodDescriptionstatic BuildRequest
BuildRequest.of
(ImageReference name, Function<Owner, TarArchive> applicationContent) Factory method to create a newBuildRequest
with specific content. -
Uses of TarArchive in org.springframework.boot.buildpack.platform.docker
Modifier and TypeMethodDescriptionvoid
DockerApi.ImageApi.exportLayers
(ImageReference reference, IOBiConsumer<String, TarArchive> exports) Export the layers of an image asTarArchives
. -
Uses of TarArchive in org.springframework.boot.buildpack.platform.docker.type
Modifier and TypeClassDescriptionclass
An image archive that can be loaded into Docker.Modifier and TypeMethodDescriptionContainerContent.getArchive()
Return the actual content to be added.Modifier and TypeMethodDescriptionstatic Layer
Layer.fromTarArchive
(TarArchive tarArchive) Factory method to create a newLayer
from aTarArchive
.static ContainerContent
ContainerContent.of
(TarArchive archive) Factory method to create a newContainerContent
instance written to the root of the container.static ContainerContent
ContainerContent.of
(TarArchive archive, String destinationPath) Factory method to create a newContainerContent
instance. -
Uses of TarArchive in org.springframework.boot.buildpack.platform.io
Modifier and TypeMethodDescriptionstatic TarArchive
TarArchive.fromInputStream
(InputStream inputStream, TarArchive.Compression compression) Factory method to adapt a ZIP file toTarArchive
.static TarArchive
Factory method to adapt a ZIP file toTarArchive
.static TarArchive
TarArchive.of
(IOConsumer<Layout> layout) Factory method to create a newTarArchive
instance with a specific layout.