![JAR search and dependency download from the Maven repository](/logo.png)
com.netflix.gradle.plugins.docker.DockerfileInstructionManager.groovy Maven / Gradle / Ivy
package com.netflix.gradle.plugins.docker
class DockerfileInstructionManager {
private final List instructions = new ArrayList()
void addInstruction(String instruction) {
instructions << instruction
}
void create(File dockerFile) {
dockerFile.withWriter { out ->
instructions.each { instruction ->
out.println instruction
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy