main
parent
9af56cb288
commit
b38a8e3d81
|
|
@ -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
|
||||
Loading…
Reference in New Issue