From 87e636e6a1d22dbfadc8fcec0339d8fd1da76ec6 Mon Sep 17 00:00:00 2001 From: Dennis Eggen <3019773@stud.hs-mannheim.de> Date: Sun, 26 Oct 2025 13:18:32 +0100 Subject: [PATCH] python/.devcontainer/Dockerfile aktualisiert --- python/.devcontainer/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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