.devcontainer/Dockerfile aktualisiert

main
Teena Steger 2026-03-17 13:16:33 +01:00
parent a085464268
commit 67db12b4fd
1 changed files with 5 additions and 4 deletions

View File

@ -1,10 +1,11 @@
FROM mcr.microsoft.com/devcontainers/go:1-1.24-bookworm
FROM mcr.microsoft.com/devcontainers/go:2-1.25-trixie
# PostgreSQL-Client installieren
RUN apt-get update && apt-get install -y postgresql-client \
&& rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists/*
# Node.js 24 (LTS) installieren
RUN curl -fsSL https://deb.nodesource.com/setup_24.x | bash - \
# Node.js 24 (LTS) installieren ohne Yarn-Repo
RUN curl -fsSL https://deb.nodesource.com/setup_24.x | sed '/yarnpkg/d' | bash - \
&& apt-get update \
&& apt-get install -y nodejs \
&& rm -rf /var/lib/apt/lists/*