From 9c26589d06dec23c0c8efaf61ffaa9b87f25e11f Mon Sep 17 00:00:00 2001 From: naicoi Date: Thu, 18 May 2023 15:11:58 +0700 Subject: [PATCH] Refactor Dockerfile to use denoland/deno image This commit replaces the ubuntu base image with denoland/deno and installs deployctl.ts using `deno install` command. --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 37fcabc..03b7f28 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,2 @@ -FROM ubuntu -RUN apt-get install curl -RUN curl -fsSL https://deno.land/x/install/install.sh | sh +FROM denoland/deno RUN deno install --allow-all --no-check -r -f https://deno.land/x/deploy/deployctl.ts \ No newline at end of file