CoolFace
Apppublic

coding-alt/AutoGPT

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
devcontainer.json41 linesDownload Raw Back to .devcontainer
1{2  "build": {3    "dockerfile": "./Dockerfile",4    "context": "."5  },6  "features": {7    "ghcr.io/devcontainers/features/common-utils:2": {8      "installZsh": "true",9      "username": "vscode",10      "userUid": "1000",11      "userGid": "1000",12      "upgradePackages": "true"13    },14    "ghcr.io/devcontainers/features/desktop-lite:1": {},15    "ghcr.io/devcontainers/features/python:1": "none",16    "ghcr.io/devcontainers/features/node:1": "none",17    "ghcr.io/devcontainers/features/git:1": {18      "version": "latest",19      "ppa": "false"20    }21  },22  // Configure tool-specific properties.23  "customizations": {24    // Configure properties specific to VS Code.25    "vscode": {26      // Set *default* container specific settings.json values on container create.27      "settings": {28        "python.defaultInterpreterPath": "/usr/local/bin/python"29      }30    }31  },32  // Use 'forwardPorts' to make a list of ports inside the container available locally.33  // "forwardPorts": [],34 35  // Use 'postCreateCommand' to run commands after the container is created.36  // "postCreateCommand": "pip3 install --user -r requirements.txt",37 38  // Set `remoteUser` to `root` to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.39  "remoteUser": "vscode"40}41