diff --git a/templates/gitpod-universal/.devcontainer/Dockerfile b/templates/gitpod-universal/.devcontainer/Dockerfile new file mode 100644 index 0000000..3132191 --- /dev/null +++ b/templates/gitpod-universal/.devcontainer/Dockerfile @@ -0,0 +1,3 @@ +FROM gitpod/openvscode-server:latest + + diff --git a/templates/gitpod-universal/.devcontainer/devcontainer.json b/templates/gitpod-universal/.devcontainer/devcontainer.json new file mode 100644 index 0000000..dfea6ae --- /dev/null +++ b/templates/gitpod-universal/.devcontainer/devcontainer.json @@ -0,0 +1,72 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/universal +{ + "name": "Gitpod Universal", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + // "image": "mcr.microsoft.com/devcontainers/universal:2-linux", + "build": { + // Path is relative to the devcontainer.json file. + "dockerfile": "Dockerfile" + }, + "features": { + "ghcr.io/devcontainers/features/common-utils": {}, + + "ghcr.io/devcontainers/features/node:1": { + "nodeGypDependencies": true, + "version": "lts", + "nvmVersion": "latest" + }, + "ghcr.io/devcontainers/features/python:1": { + "version": "3.10" + }, + "ghcr.io/tailscale/codespace/tailscale": {}, + "ghcr.io/devcontainers/features/rust:1": {}, + "ghcr.io/meaningful-ooo/devcontainer-features/fish:1": {}, + "ghcr.io/devcontainers-contrib/features/curl-apt-get:1": {}, + "ghcr.io/devcontainers/features/sshd:1": { + "version": "latest" + }, + "ghcr.io/devcontainers/features/git:1": { + "version": "latest", + "ppa": "false" + }, + "ghcr.io/devcontainers/features/git-lfs:1": { + "version": "latest" + }, + "ghcr.io/devcontainers/features/github-cli:1": { + "version": "latest" + }, + "ghcr.io/devcontainers/features/docker-in-docker:2": { + "version": "latest" + }, + "ghcr.io/devcontainers/features/kubectl-helm-minikube:1": { + "version": "latest" + }, + "ghcr.io/devcontainers/features/go:1": { + "version": "latest" + }, + "ghcr.io/devcontainers-contrib/features/neovim-apt-get:1": {}, + "ghcr.io/devcontainers-contrib/features/vscode-server:1": {} + }, + "runArgs": ["--device=/dev/net/tun"], + "customizations": { + "vscode": { + "extensions": ["npv2k1.theme-dracula-gray", "ms-azuretools.vscode-docker"] + } + } + + // 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": [], + + // Use 'postCreateCommand' to run commands after the container is created. + // "postCreateCommand": "uname -a", + + // Configure tool-specific properties. + // "customizations": {}, + + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" +}