python/.devcontainer/Dockerfile aktualisiert
parent
82ab5c5279
commit
87e636e6a1
|
|
@ -2,10 +2,8 @@ FROM python:3.11-slim
|
||||||
|
|
||||||
WORKDIR /workspace
|
WORKDIR /workspace
|
||||||
|
|
||||||
|
# Optional: Installiere häufig genutzte Tools
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN apt-get update && apt-get install -y \
|
||||||
git \
|
git \
|
||||||
curl \
|
curl \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
COPY requirements.txt .
|
|
||||||
RUN pip install --no-cache-dir -r requirements.txt
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue