0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-09 21:57:40 -04:00
deno/.devcontainer/Dockerfile

11 lines
273 B
Docker

FROM mcr.microsoft.com/vscode/devcontainers/rust:1-bullseye
# Install cmake
RUN apt-get update \
&& apt-get install -y cmake clang \
&& rm -rf /var/lib/apt/lists/*
# Install Deno
ENV DENO_INSTALL=/usr/local
RUN curl -fsSL https://deno.land/x/install/install.sh | sh