pythonTest/python/.devcontainer/Dockerfile

10 lines
189 B
Docker

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/*