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

org.testcontainers.images.builder.dockerfile.traits.AddStatementTrait Maven / Gradle / Ivy

There is a newer version: 1.20.1
Show newest version
package org.testcontainers.images.builder.dockerfile.traits;

import org.testcontainers.images.builder.dockerfile.statement.MultiArgsStatement;

public interface AddStatementTrait & DockerfileBuilderTrait> {

    default SELF add(String source, String destination) {
        return ((SELF) this).withStatement(new MultiArgsStatement("ADD", source, destination));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy