1
0
Fork 0

Refactor Dockerfile to use denoland/deno image
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit replaces the ubuntu base image with denoland/deno and installs deployctl.ts using `deno install` command.
main
naicoi 2023-05-18 15:11:58 +07:00
parent 7f212e6882
commit 9c26589d06
Signed by: naicoi
GPG Key ID: 7142E472DF7CF7D9
1 changed files with 1 additions and 3 deletions

View File

@ -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