python/.devcontainer/Dockerfile aktualisiert

feature/interestingPoints
Dennis Eggen 2025-10-26 13:18:32 +01:00
parent 82ab5c5279
commit 87e636e6a1
1 changed files with 1 additions and 3 deletions

View File

@ -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