From 10d17ae2f6a806a5ddaa2becc2561b35bcb1e6f4 Mon Sep 17 00:00:00 2001 From: Sam Therapy Date: Sun, 24 Mar 2024 17:21:58 +0100 Subject: [PATCH] Spain without the S Signed-off-by: Sam Therapy --- Dockerfile | 4 ++-- run.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0834cb2..afab6e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/run.ts b/run.ts index caa0a97..d3c3aa8 100755 --- a/run.ts +++ b/run.ts @@ -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";