mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 04:51:22 +00:00
fc293c68b5
It shouldn't be needed anymore
12 lines
267 B
Docker
12 lines
267 B
Docker
FROM mcr.microsoft.com/vscode/devcontainers/rust:1-bullseye
|
|
|
|
# Install cmake
|
|
RUN apt-get update \
|
|
&& apt-get install -y cmake \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Deno
|
|
ENV DENO_INSTALL=/usr/local
|
|
RUN curl -fsSL https://deno.land/x/install/install.sh | sh
|
|
|