devcontainer.json: use master image.

For development it feels like it makes sense to use the master image.

While we're here, let VSCode autoformat the devcontainer.json.
This commit is contained in:
Mike McQuaid 2024-11-20 11:33:35 +00:00
parent d8242dafd1
commit 68a0ad05dc
No known key found for this signature in database

View File

@ -1,13 +1,10 @@
// For format details, see https://aka.ms/devcontainer.json. // For format details, see https://aka.ms/devcontainer.json.
{ {
"name": "Homebrew/brew", "name": "Homebrew/brew",
"image": "ghcr.io/homebrew/brew:latest", "image": "ghcr.io/homebrew/brew:master",
"workspaceFolder": "/home/linuxbrew/.linuxbrew/Homebrew", "workspaceFolder": "/home/linuxbrew/.linuxbrew/Homebrew",
"workspaceMount": "source=${localWorkspaceFolder},target=/home/linuxbrew/.linuxbrew/Homebrew,type=bind,consistency=cached", "workspaceMount": "source=${localWorkspaceFolder},target=/home/linuxbrew/.linuxbrew/Homebrew,type=bind,consistency=cached",
"onCreateCommand": ".devcontainer/on-create-command.sh", "onCreateCommand": ".devcontainer/on-create-command.sh",
"customizations": { "customizations": {
"codespaces": { "codespaces": {
"repositories": { "repositories": {
@ -43,7 +40,6 @@
] ]
} }
}, },
"remoteEnv": { "remoteEnv": {
"HOMEBREW_GITHUB_API_TOKEN": "${localEnv:GITHUB_TOKEN}" "HOMEBREW_GITHUB_API_TOKEN": "${localEnv:GITHUB_TOKEN}"
} }