From d83e734e1744f97920be7c838b4940a7adc48337 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiana=20=20=E2=9A=A1=EF=B8=8F=20Campanari?= <113218619+FabianaCampanari@users.noreply.github.com> Date: Mon, 27 Jul 2026 13:47:40 -0300 Subject: [PATCH] Delete .devcontainer directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabiana ⚡️ Campanari <113218619+FabianaCampanari@users.noreply.github.com> --- .devcontainer/Dockerfile | 39 ---------------------- .devcontainer/devcontainer.json | 58 --------------------------------- .devcontainer/devcontainer.yml | 30 ----------------- 3 files changed, 127 deletions(-) delete mode 100644 .devcontainer/Dockerfile delete mode 100644 .devcontainer/devcontainer.json delete mode 100644 .devcontainer/devcontainer.yml diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile deleted file mode 100644 index 7563682c..00000000 --- a/.devcontainer/Dockerfile +++ /dev/null @@ -1,39 +0,0 @@ -# Define a imagem base -FROM ghcr.io/containerbase/devcontainer:10.1.4 - -# Use a imagem oficial do Python a partir do Docker Hub -FROM python:3.11-slim-buster - -# Atualiza a lista de pacotes -RUN apt-get update - -# Instala o Python e o pip -RUN apt-get install -y python3 python3-pip - -# Copia o arquivo de requisitos para o contêiner -COPY requirements.txt . - -# Instala as bibliotecas Python listadas no arquivo de requisitos -RUN pip3 install -r requirements.txt - -# Instala as dependências do projeto -RUN pip install --no-cache-dir -r requirements.txt - - -# Define o diretório de trabalho no contêiner -WORKDIR /app - -# Copia os arquivos do projeto para o contêiner -COPY . . - -# Comando para iniciar o aplicativo (substitua 'my_script.py' pelo seu script Python) -CMD ["python3", "my_script.py"] - - - - - - - - - diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index f5c6c120..00000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,58 +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.245.2/containers/ubuntu -{ - "name": "Ubuntu", - "build": { - "dockerfile": "Dockerfile", - // Update 'VARIANT' to pick an Ubuntu version: jammy / ubuntu-22.04, focal / ubuntu-20.04, bionic /ubuntu-18.04 - // Use ubuntu-22.04 or ubuntu-18.04 on local arm64/Apple Silicon. - "args": { - "VARIANT": "ubuntu-22.04" - } - }, - // Use 'forwardPorts' to make a list of ports inside the container available locally. - // "forwardPorts": [], - - "onCreateCommand": "bash .devcontainer/on-create.sh", - // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "bash .devcontainer/post-create.sh", - // Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. - "remoteUser": "vscode", - "features": { - "ghcr.io/devcontainers/features/docker-outside-of-docker": "latest", - "ghcr.io/devcontainers/features/github-cli": "latest", - "ghcr.io/devcontainers/features/node": "lts", - "ghcr.io/devcontainers/features/go": "latest", - "ghcr.io/devcontainers/features/ruby": "3.3.1", - "ghcr.io/devcontainers/features/rust": "latest", - "ghcr.io/devcontainers/features/dotnet": "latest", - "ghcr.io/devcontainers/features/sshd:1": { - "version": "latest" - } - }, - "customizations": { - "vscode": { - "extensions": [ - "ms-vscode-remote.remote-containers", - "rubocop.vscode-rubocop", - "shopify.ruby-extensions-pack" - ], - "settings": { - "[ruby]": { - "editor.defaultFormatter": "Shopify.ruby-lsp", - "editor.formatOnSave": true, - "editor.formatOnType": true, - "editor.insertSpaces": true, - "editor.rulers": [120], - "editor.semanticHighlighting.enabled": true, - "editor.tabSize": 2, - "files.insertFinalNewline": true, - "files.trimFinalNewlines": true, - "files.trimTrailingWhitespace": true - }, - "rubocop.autocorrect": true, - "sorbet.enabled": true - } - } - } -} diff --git a/.devcontainer/devcontainer.yml b/.devcontainer/devcontainer.yml deleted file mode 100644 index 09153174..00000000 --- a/.devcontainer/devcontainer.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Devcontainer - -on: - pull_request: - branches: - - main - types: - - opened - - synchronize - - reopened - - ready_for_review - -permissions: - contents: read - -jobs: - devcontainer-test: - runs-on: ubuntu-latest - if: github.event.pull_request.draft != true - steps: - - name: Checkout - uses: actions/checkout@v4.1.1 - - - name: Build and run dev container task - uses: devcontainers/ci@v0.3 - with: - runCmd: pnpm build - - -