mirror of
https://github.com/EyeTrackVR/EyeTrackVR.git
synced 2025-09-26 23:09:28 +08:00
49 lines
1.6 KiB
JSON
49 lines
1.6 KiB
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
|
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-dockerfile
|
|
{
|
|
"name": "EyeTrackVR App Backend",
|
|
"build": {
|
|
// Sets the run context to one level up instead of the .devcontainer folder.
|
|
"context": "..",
|
|
// Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename.
|
|
"dockerfile": "../Dockerfile"
|
|
},
|
|
"features": {
|
|
"ghcr.io/akhildevelops/devcontainer-features/apt:0": {},
|
|
"ghcr.io/devcontainers/features/python:1": {
|
|
"installTools": true,
|
|
"optimize": true,
|
|
"version": "3.10"
|
|
}
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {},
|
|
"extensions": [
|
|
"streetsidesoftware.code-spell-checker",
|
|
"ms-python.python",
|
|
"ms-python.vscode-pylance",
|
|
"ms-azuretools.vscode-docker",
|
|
"wayou.vscode-todo-highlight",
|
|
"gruntfuggly.todo-tree",
|
|
"eamodio.gitlens",
|
|
"github.vscode-pull-request-github",
|
|
"rangav.vscode-thunder-client"
|
|
]
|
|
}
|
|
},
|
|
|
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
|
// "features": {},
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
"forwardPorts": [
|
|
8000
|
|
],
|
|
// Uncomment the next line to run commands after the container is created.
|
|
"postCreateCommand": "make install && make"
|
|
// Configure tool-specific properties.
|
|
// "customizations": {},
|
|
// Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root.
|
|
// "remoteUser": "devcontainer"
|
|
}
|