io.bkbn.skelegro.docker.IDockerfile.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of skelegro-docker Show documentation
Show all versions of skelegro-docker Show documentation
A wacky assortment of Kotlin DSLs for infrastructure manifest generation
package io.bkbn.skelegro.docker
import java.io.File
interface IDockerfile {
fun writeTo(file: File): File {
val stringify = this.toString()
file.writeText(stringify)
return file
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy