From fc045de32126333e30dfb702351a6555fccac590 Mon Sep 17 00:00:00 2001 From: Quim Muntal Date: Tue, 18 Apr 2023 13:45:26 +0000 Subject: [PATCH] fix devcontainer --- .devcontainer/Dockerfile | 2 +- .devcontainer/devcontainer.json | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 3dfd03b..3432e00 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,5 +1,5 @@ ARG VARIANT=1.17-bullseye -FROM mcr.microsoft.com/vscode/devcontainers/go:0-${VARIANT} +FROM mcr.microsoft.com/devcontainers/go:0-${VARIANT} RUN apt-get update \ && apt-get install -y build-essential diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index cb5ff99..cdf1e72 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -12,7 +12,9 @@ "GO_OPENSSL_VERSION_OVERRIDE": "1.1.0", }, "onCreateCommand": "sh ${containerWorkspaceFolder}/scripts/openssl.sh ${GO_OPENSSL_VERSION_OVERRIDE}", - "extensions": [ - "golang.go" - ] + "customizations": { + "vscode": { + "extensions": ["golang.go"] + } + }, } \ No newline at end of file