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

erAgent.mill-jib-docker-api_2.12.0.1.0.source-code.JibDockerWorkerApi.scala Maven / Gradle / Ivy

The newest version!
package mill.jib.docker.api

import java.nio.file.Path

sealed trait Image
case class DockerDaemonImage(image: String) extends Image
case class RegistryImage(image: String, username: String, password: String) extends Image

trait JibDockerWorkerApi {
  def build(
    image: Image,
    tags: Seq[String],
    baseImage: String,
    mainClass: String,
    deps: Seq[Path],
    projectDeps: Seq[Path],
    jvmFlags: Seq[String],
    labels: Map[String, String]): Unit
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy