Dev-Container: NodeJS added

main
Teena Steger 2025-11-25 17:51:02 +01:00
parent b392786fe4
commit 76384f9c4c
1 changed files with 7 additions and 1 deletions

View File

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