lab-development-imb/.devcontainer/Dockerfile

10 lines
349 B
Docker

FROM mcr.microsoft.com/devcontainers/go:1-1.24-bookworm
# PostgreSQL-Client installieren
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/*