Skip to content

Commit

Permalink
Update dev environment to use new image (VowpalWabbit#3001)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackgerrits authored May 17, 2021
1 parent 97e1379 commit b5939a8
Showing 1 changed file with 14 additions and 24 deletions.
38 changes: 14 additions & 24 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,17 @@
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.131.0/containers/codespaces-linux
// For format details, see https://aka.ms/vscode-remote/devcontainer.json
{
"name": "Codespaces",
"image": "vowpalwabbit/all-dev-ubuntu1604:latest",
//"remoteUser": "codespace",
"workspaceMount": "source=${localWorkspaceFolder},target=/home/codespace/workspace,type=bind,consistency=cached",
"workspaceFolder": "/home/codespace/workspace",
"runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined", "--privileged" ],
"name": "dev_env",
"image": "vowpalwabbit/ubuntu2004-dev:latest",
"workspaceMount": "source=${localWorkspaceFolder},target=/home/workspace,type=bind,consistency=cached",
"workspaceFolder": "/home/workspace",
"runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined", "--privileged" ],

// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"ms-vsonline.vsonline",
"GitHub.vscode-pull-request-github",
"MS-vsliveshare.vsliveshare",
"VisualStudioExptTeam.vscodeintellicode"
]

// Set *default* container specific settings.json values on container create.
// "settings": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "uname -a"
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"GitHub.vscode-pull-request-github",
"ms-vscode.cmake-tools",
"ms-vscode.cpptools",
// CMake file syntax highlighting
"twxs.cmake"
]
}

0 comments on commit b5939a8

Please sign in to comment.