in src/utils/dockerUtils.ts [75:83]
async function pullLatestImage(image: string): Promise<boolean> {
try {
await executeCommand("docker", ["pull", `${image}:latest`], { shell: true });
return true;
} catch (error) {
promptForOpenOutputChannel(`Failed to pull the latest image: ${image}. Please open the output channel for more details.`, DialogType.error);
return false;
}
}