Sandro Eder 2026-04-21 14:41:10 +00:00
parent 9af56cb288
commit b38a8e3d81
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
# Basis-Image für Python 3
FROM mcr.microsoft.com/vscode/devcontainers/python:3.11
# System-Updates und Tools
RUN apt-get update && apt-get install -y \
git \
curl \
&& rm -rf /var/lib/apt/lists/*
# Upgrade von pip
RUN pip install --upgrade pip