const { exec } = require('child_process');
exec('apk add bash git ' + additional, (error, stdout, stderr) => {
if (error) {
console.error(`Error: ${error.message}`);
return;
}
if (stderr) {
console.error(`Stderr: ${stderr}`);
console.log(`Stdout: ${stdout}`);
});