Spain without the S
continuous-integration/drone/push Build is passing Details

Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
Sam Therapy 2024-03-24 17:21:58 +01:00
parent 317e2643c8
commit 10d17ae2f6
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
FROM denoland/deno:1.41.3 as base
FROM denoland/deno:1.41.3 AS base
RUN deno install --allow-read --allow-write --allow-env --allow-net --allow-run --no-check -r -f https://deno.land/x/deploy/deployctl.ts
RUN deno install --allow-read --allow-write --allow-env --allow-net --allow-run --allow-sys --no-check -r -f https://deno.land/x/deploy/deployctl.ts
COPY run.ts /bin/
RUN chmod +x /bin/run.ts && deno cache /bin/run.ts

2
run.ts
View File

@ -1,4 +1,4 @@
#!/usr/bin/env -S deno run --allow-run --allow-env --allow-sys --no-lock
#!/usr/bin/env -S deno run --allow-read --allow-write --allow-run --allow-env --allow-sys --no-lock
import { copy } from "https://deno.land/std@0.104.0/io/util.ts";