From fbb3c5f0eea0c6072645d3161457806cbbcb4037 Mon Sep 17 00:00:00 2001 From: alwaqttravellers-droid Date: Fri, 18 Sep 2026 05:19:44 +0700 Subject: [PATCH] Delete .devcontainer directory --- .devcontainer/Dockerfile | 3 -- .devcontainer/devcontainer.json | 78 --------------------------------- 2 files changed, 81 deletions(-) delete mode 100644 .devcontainer/Dockerfile delete mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile deleted file mode 100644 index 3eb2c5b8fb18..000000000000 --- a/.devcontainer/Dockerfile +++ /dev/null @@ -1,3 +0,0 @@ -# To find available Node images, see https://mcr.microsoft.com/en-us/product/devcontainers/javascript-node/tags -ARG VARIANT=dev-24-bullseye -FROM mcr.microsoft.com/devcontainers/javascript-node:dev-24-bullseye@sha256:3502f1f21b1989500e8c72ada7d6e496dc4540b0707d4ea4ff743077f88a6c2d diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index 2de8b05958fb..000000000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,78 +0,0 @@ -// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: -// https://github.com/microsoft/vscode-dev-containers/tree/v0.177.0/containers/javascript-node -// - -{ - "name": "docs.github.com", - "build": { - "dockerfile": "Dockerfile", - // Update 'VARIANT' to pick a Node version - "args": { "VARIANT": "24" } - }, - - // Install features. Type 'feature' in the VS Code command palette for a full list. - "features": { - "sshd": "latest", - "ghcr.io/devcontainers/features/copilot-cli:1": { - "version": "prerelease" - }, - "ghcr.io/devcontainers/features/github-cli:1": {}, - "ghcr.io/devcontainers/features/docker-in-docker:2": {} - }, - - "customizations": { - "vscode": { - // Set *default* container specific settings.json values on container create. - "settings": { - "terminal.integrated.shell.linux": "/bin/bash", - "cSpell.language": ",en", - "git.autofetch": true - }, - // Visual Studio Code extensions which help authoring for docs.github.com. - "extensions": [ - "dbaeumer.vscode-eslint", - "sissel.shopify-liquid", - "davidanson.vscode-markdownlint", - "bierner.markdown-preview-github-styles", - "streetsidesoftware.code-spell-checker", - "alistairchristie.open-reusables", - "AlistairChristie.version-identifier", - "peterbe.ghdocs-goer", - "GitHub.copilot", - "GitHub.copilot-chat" - ] - }, - "codespaces": { - "repositories": { - // allow Codespaces to pull from separate repo when user has access - "github/docs-early-access": { - "permissions": { - "contents": "write" - } - } - } - } - }, - - // Use 'forwardPorts' to make a list of ports inside the container available locally. - "forwardPorts": [4000], - - "portsAttributes": { - "4000": { - "label": "Review" - } - }, - - // Lifecycle commands - // Start a web server and keep it running - "postStartCommand": "nohup bash -c 'npm ci && npm start &'", - // Set port 4000 to be public - "postAttachCommand": "gh cs ports visibility 4000:public -c \"$CODESPACE_NAME\"", - - // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. - "remoteUser": "node", - - "hostRequirements": { - "memory": "16gb", - "cpus": "4" - } -}