add .devcontainer

This commit is contained in:
Amruth Pillai
2026-02-06 19:15:56 +01:00
parent 611af8ee72
commit 3289453448
3 changed files with 138 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM mcr.microsoft.com/devcontainers/typescript-node:24
RUN corepack enable
RUN apt-get update && apt-get install -y --no-install-recommends \
git \
curl \
&& rm -rf /var/lib/apt/lists/*
EXPOSE 3000