Skip to content

Commit

Permalink
devcontainer: useful for smoketesting
Browse files Browse the repository at this point in the history
Signed-off-by: Øyvind Harboe <[email protected]>
  • Loading branch information
oharboe committed Aug 31, 2024
1 parent d80332c commit 7af4e10
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "Ubuntu 22.04 with Bazel and Docker",
"image": "mcr.microsoft.com/vscode/devcontainers/base:ubuntu-22.04",
"features": {
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
"ghcr.io/devcontainers-community/features/bazel:1": {},
"ghcr.io/jungaretti/features/make:1": {}
},
"postCreateCommand": "sudo apt-get update && sudo apt-get install -y time",
"customizations": {
"vscode": {
"settings": {},
"extensions": [
"ms-vscode-remote.remote-containers"
]
}
},
"mounts": [
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind"
]
}

0 comments on commit 7af4e10

Please sign in to comment.