forked from WEB-IB-SS26/development-ib
.devcontainer/Dockerfile aktualisiert
parent
a085464268
commit
67db12b4fd
|
|
@ -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
|
# 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/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Node.js 24 (LTS) installieren
|
# Node.js 24 (LTS) installieren – ohne Yarn-Repo
|
||||||
RUN curl -fsSL https://deb.nodesource.com/setup_24.x | bash - \
|
RUN curl -fsSL https://deb.nodesource.com/setup_24.x | sed '/yarnpkg/d' | bash - \
|
||||||
|
&& apt-get update \
|
||||||
&& apt-get install -y nodejs \
|
&& apt-get install -y nodejs \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
Loading…
Reference in New Issue