From d86af4b976b8c25e80f5da9a4f0031a61d659ccf Mon Sep 17 00:00:00 2001 From: fabriciojs Date: Fri, 14 Aug 2026 21:35:17 -0300 Subject: [PATCH] drop dev container --- .devcontainer/Dockerfile | 21 ------------------ .devcontainer/devcontainer.json | 39 --------------------------------- 2 files changed, 60 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 b0295008..00000000 --- a/.devcontainer/Dockerfile +++ /dev/null @@ -1,21 +0,0 @@ -FROM debian:stable - -ARG USERNAME=kool -ARG USER_UID=1000 -ARG USER_GID=$USER_UID - -RUN groupadd --gid $USER_GID $USERNAME \ - && useradd --uid $USER_UID --gid $USER_GID -s /bin/bash -m $USERNAME \ - && apt-get update \ - && apt-get install -y sudo \ - && echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \ - && chmod 0440 /etc/sudoers.d/$USERNAME - -# install kool -RUN apt update && apt install curl git -y && curl -fsSL https://kool.dev/install | bash - -WORKDIR /home/kool - -USER $USERNAME - -RUN bash -c "$(curl -fsSL https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh)" diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index 243b288b..00000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,39 +0,0 @@ -// 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": "Kool.dev Container for Go CLI development", - - "build": { - "context": ".", - "dockerfile": "Dockerfile" - }, - - // Features to add to the dev container. More info: https://containers.dev/features. - "features": { - "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}, - "ghcr.io/devcontainers/features/go:1": { - "version": "1.21" - } - }, - - // Use 'forwardPorts' to make a list of ports inside the container available locally. - // "forwardPorts": [ - // ], - - // Uncomment the next line to run commands after the container is created. - "postCreateCommand": [ - // "bash -c \"$(curl -fsSL https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh)\"" - ], - - // Configure tool-specific properties. - "customizations": { - "vscode": { - "extensions": [ - "ms-vscode.go" - ] - } - }, - - // Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root. - "remoteUser": "kool" -}