From b307fe964aa365454948568c2fdb2eaeeb025b4f Mon Sep 17 00:00:00 2001 From: Venkata Mutyala Date: Tue, 9 Apr 2024 12:48:08 -0700 Subject: [PATCH] chore(devcontainer): remove variant arg since it's hardcoded in dockerfile --- .devcontainer/devcontainer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 4d99317..7754918 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,10 +3,10 @@ { "name": "Ubuntu", "build": { - "dockerfile": "Dockerfile", + "dockerfile": "Dockerfile" // Update 'VARIANT' to pick an Ubuntu version: jammy / ubuntu-22.04, focal / ubuntu-20.04, bionic /ubuntu-18.04 // Use ubuntu-22.04 or ubuntu-18.04 on local arm64/Apple Silicon. - "args": { "VARIANT": "ubuntu-22.04" } + }, // Set *default* container specific settings.json values on container create.