Skip to main content
Module

x/deno/.devcontainer/Dockerfile

A modern runtime for JavaScript and TypeScript.
Latest
File
FROM mcr.microsoft.com/vscode/devcontainers/rust:1-bullseye
# Install cmake and protobuf-compilerRUN apt-get update \ && apt-get install -y cmake \ && apt-get install -y protobuf-compiler \ && rm -rf /var/lib/apt/lists/*
# Install DenoENV DENO_INSTALL=/usr/localRUN curl -fsSL https://deno.land/x/install/install.sh | sh