From 6fca4feac8180277970555b9558d9a810e9210e3 Mon Sep 17 00:00:00 2001 From: "Eduardo P. Gomez" Date: Mon, 4 Mar 2024 21:56:02 -0300 Subject: [PATCH 1/2] Update devcontainer.json --- .devcontainer/devcontainer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index cdb91a54..78348393 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,6 @@ { - "name": "ubuntu-jammy", - "image": "ubuntu-latest", + "name": "ubuntu", + "image": "docker.io/library/ubuntu-latest", "features": { }, "postCreateCommand": "sudo ./build.sh" From 92e76885368f6d18fb3795164e50f12410d68da9 Mon Sep 17 00:00:00 2001 From: "Eduardo P. Gomez" Date: Mon, 4 Mar 2024 22:06:48 -0300 Subject: [PATCH 2/2] This will do Just run the dev-container to build binaries. --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 78348393..25a799ed 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,7 +1,8 @@ { "name": "ubuntu", - "image": "docker.io/library/ubuntu-latest", + "image": "docker.io/library/ubuntu", "features": { }, + "onCreateCommand": "apt update && apt install sudo git", "postCreateCommand": "sudo ./build.sh" }