forked from WEB-IMB-WS2526/lab-development-imb
Dev-Container: NodeJS added
parent
b392786fe4
commit
76384f9c4c
|
|
@ -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/*
|
||||
Loading…
Reference in New Issue