mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
9 lines
301 B
Docker
9 lines
301 B
Docker
FROM --platform=linux/amd64 mcr.microsoft.com/vscode/devcontainers/base:0-bullseye
|
|
|
|
ENV DENO_INSTALL=/deno
|
|
RUN mkdir -p /deno \
|
|
&& curl -fsSL https://deno.land/x/install/install.sh | sh \
|
|
&& chown -R vscode /deno
|
|
|
|
ENV PATH=${DENO_INSTALL}/bin:${PATH} \
|
|
DENO_DIR=${DENO_INSTALL}/.cache/deno |