diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 811afe11..9f45965c 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,20 +1,7 @@ -// See https://github.com/julia-vscode/julia-devcontainer/blob/master/Dockerfile for image contents { - "name": "Julia (Community)", - "image": "ghcr.io/julia-vscode/julia-devcontainer", - - // Configure tool-specific properties. - "customizations": { - // Configure properties specific to VS Code. - "vscode": { - // Add the IDs of extensions you want installed when the container is created. - "extensions": [ - "julialang.language-julia" - ] - } + "image": "mcr.microsoft.com/vscode/devcontainers/base", + "features": { + "ghcr.io/julialang/devcontainer-features/julia:1": {}, + "ghcr.io/devcontainers/features/python:1": {} }, - - "postCreateCommand": "/julia-devcontainer-scripts/postcreate.jl", - - "remoteUser": "vscode" }