Files
jrx/.devcontainer/Dockerfile
Kenneth 0a1a4fbf09 Add devcontainer with Node.js 22 and Bun
Installs dependencies for both root and example/ on container creation.

Co-authored-by: Ona <no-reply@ona.com>
2026-02-28 01:03:04 +00:00

7 lines
245 B
Docker

FROM mcr.microsoft.com/devcontainers/base:ubuntu-24.04
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends \
curl unzip git ca-certificates \
&& rm -rf /var/lib/apt/lists/*