forked from VowpalWabbit/vowpal_wabbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dev environment to use new image (VowpalWabbit#3001)
- Loading branch information
1 parent
97e1379
commit b5939a8
Showing
1 changed file
with
14 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} |