diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 5e1af78800a1413adf430f3f3814f7d15f0a1b01..f199358eeaeec42080404b65459578a5b0b7350f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,19 +1,12 @@ { - "name": "Golang Dev Container", - "context": "..", - "build": { - "dockerfile": "../Dockerfile" - }, - "postCreateCommand": "go mod tidy", - "settings": { - "terminal.integrated.defaultProfile.linux": "bash" - }, - "extensions": [ - "golang.go", - "ms-azuretools.vscode-docker" - ], - "forwardPorts": [ - 3000 - ], - "remoteUser": "root" + "name": "Go", + "image": "mcr.microsoft.com/devcontainers/go:1-1.22-bookworm", + "customizations": { + "vscode": { + "settings": {}, + "extensions": [ + "streetsidesoftware.code-spell-checker" + ] + } + } } \ No newline at end of file