https://github.com/JuliaLang/julia
Raw File
Tip revision: 27b9cb9ecf5f85a6982624d43c144d01342c58a6 authored by David Anthoff on 28 August 2023, 01:22:32 UTC
Tweak launch config
Tip revision: 27b9cb9
devcontainer.json
{
	"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
	"features": {
		"ghcr.io/julialang/devcontainer-features/julia:1": {},
		"ghcr.io/rocker-org/devcontainer-features/apt-packages:1": {
			"packages": ["gdb"]
		}
	},
	"customizations": {
		"vscode": {
			"extensions": [
				"julialang.language-julia",
				"ms-vscode.cpptools",
				"tamasfe.even-better-toml",
				"github.vscode-github-actions",
				"GitHub.vscode-pull-request-github",
				"ms-vscode.makefile-tools"
			]
		}
	},
	"postCreateCommand": "juliaup link dev /workspaces/julia/julia",
	"hostRequirements": {
		"memory": "8gb"
	 }
}
back to top