diff --git a/python/.devcontainer/Dockerfile b/python/.devcontainer/Dockerfile index 34bfb0c..7d6856d 100644 --- a/python/.devcontainer/Dockerfile +++ b/python/.devcontainer/Dockerfile @@ -2,10 +2,8 @@ FROM python:3.11-slim WORKDIR /workspace +# Optional: Installiere häufig genutzte Tools RUN apt-get update && apt-get install -y \ git \ curl \ && rm -rf /var/lib/apt/lists/* - -COPY requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt