From 7614d21d5b29983c5889cc75350c1e12ff2efdd3 Mon Sep 17 00:00:00 2001 From: OliEfr Date: Thu, 2 Oct 2025 19:05:44 +0200 Subject: [PATCH] update devcontainer --- .devcontainer/Dockerfile | 3 ++- .devcontainer/devcontainer.linux.json | 1 + .devcontainer/devcontainer.wsl2.json | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 2e92282..1c75b03 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -13,6 +13,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ curl \ ssh \ mesa-utils \ + bash \ && rm -rf /var/lib/apt/lists/* && apt-get clean # Create symbolic links for python @@ -63,7 +64,7 @@ RUN pip install --no-cache-dir ruff # Create a temporary directory for installation with proper permissions WORKDIR /tmp/install -# Copy pyproject.toml with correct ownership +# Copy project with correct ownership COPY --chown=$USERNAME:$USERNAME . . # Install dependencies as non-root user diff --git a/.devcontainer/devcontainer.linux.json b/.devcontainer/devcontainer.linux.json index e2eba79..3405c66 100644 --- a/.devcontainer/devcontainer.linux.json +++ b/.devcontainer/devcontainer.linux.json @@ -19,6 +19,7 @@ "ms-toolsai.jupyter-keymap" ], "settings": { + "terminal.integrated.shell.linux": "/bin/bash", "python.defaultInterpreterPath": "/home/vscode/venv/bin/python", "jupyter.kernels.excludePythonEnvironments": [ "/usr/bin/python", diff --git a/.devcontainer/devcontainer.wsl2.json b/.devcontainer/devcontainer.wsl2.json index a0640b9..e688369 100644 --- a/.devcontainer/devcontainer.wsl2.json +++ b/.devcontainer/devcontainer.wsl2.json @@ -19,6 +19,7 @@ "ms-toolsai.jupyter-keymap" ], "settings": { + "terminal.integrated.shell.linux": "/bin/bash", "python.defaultInterpreterPath": "/home/vscode/venv/bin/python", "jupyter.kernels.excludePythonEnvironments": [ "/usr/bin/python",