Uses of Interface
org.springframework.boot.buildpack.platform.io.TarArchive
Packages that use 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
Methods in org.springframework.boot.buildpack.platform.build that return TarArchiveModifier and TypeMethodDescriptionBuildRequest.getApplicationContent
(Owner owner) Return aTarArchive
containing the application content that the buildpack should package.Method parameters in org.springframework.boot.buildpack.platform.build with type arguments of type TarArchiveModifier 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
Method parameters in org.springframework.boot.buildpack.platform.docker with type arguments of type TarArchiveModifier 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
Classes in org.springframework.boot.buildpack.platform.docker.type that implement TarArchiveModifier and TypeClassDescriptionclass
An image archive that can be loaded into Docker.Methods in org.springframework.boot.buildpack.platform.docker.type that return TarArchiveModifier and TypeMethodDescriptionContainerContent.getArchive()
Return the actual content to be added.Methods in org.springframework.boot.buildpack.platform.docker.type with parameters of type TarArchiveModifier 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
Classes in org.springframework.boot.buildpack.platform.io that implement TarArchiveMethods in org.springframework.boot.buildpack.platform.io that return TarArchiveModifier 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.