diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index e69de29..6fd66b8 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -0,0 +1,11 @@ +# Basis-Image für Python 3 +FROM mcr.microsoft.com/vscode/devcontainers/python:3.11 + +# System-Updates und Tools +RUN apt-get update && apt-get install -y \ + git \ + curl \ + && rm -rf /var/lib/apt/lists/* + +# Upgrade von pip +RUN pip install --upgrade pip \ No newline at end of file