We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb450fc commit 7dbc229Copy full SHA for 7dbc229
2 files changed
.devcontainer/Dockerfile
@@ -0,0 +1,11 @@
1
+FROM mcr.microsoft.com/devcontainers/python:3.14
2
+
3
+# Install GDB
4
+RUN apt-get update && \
5
+ apt-get install -y --no-install-recommends gdb \
6
+ && apt-get clean \
7
+ && rm -rf /var/lib/apt/lists/*
8
9
+# Switch to non-root user and install Python packages
10
+USER vscode
11
+RUN python -m pip install black flake8 tox
.devcontainer/devcontainer.json
@@ -0,0 +1,12 @@
+{
+ "name": "debugpy Development",
+ "build": {
+ "dockerfile": "Dockerfile"
+ },
+ "features": {
+ "ghcr.io/devcontainers/features/git:1": {}
+ "remoteUser": "vscode"
12
+}
0 commit comments