From c514da0804ccbfc1a5ffeaedb1b797863eb73f93 Mon Sep 17 00:00:00 2001 From: ryu <114303361+ryuapp@users.noreply.github.com> Date: Thu, 22 Feb 2024 11:33:14 +0900 Subject: [PATCH] chore: use official deno installer (#2250) --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index baccdd5c..5885a62b 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/devcontainers/typescript-node:20 # Install Deno ENV DENO_INSTALL=/usr/local -RUN curl -fsSL https://gist.githubusercontent.com/LukeChannings/09d53f5c364391042186518c8598b85e/raw/ac8cd8c675b985edd4b3e16df63ffef14d1f0e24/deno_install.sh | sh +RUN curl -fsSL https://deno.land/install.sh | sh # Install Bun ENV BUN_INSTALL=/usr/local