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

com.playtika.testcontainer.common.utils.AptGetPackageInstaller Maven / Gradle / Ivy

The newest version!
package com.playtika.testcontainer.common.utils;

import com.playtika.testcontainer.common.properties.InstallPackageProperties;
import org.testcontainers.containers.GenericContainer;


public class AptGetPackageInstaller extends PackageInstaller {

    public AptGetPackageInstaller(InstallPackageProperties properties, GenericContainer container) {
        super(properties, container);
    }

    @Override
    protected void updatePackageList() {
        executeCommandAndCheckExitCode("apt-get", "update");
    }

    @Override
    protected void install(String packageToInstall) {
        executeCommandAndCheckExitCode("apt-get", "-qq", "-y", "install", packageToInstall);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy