From 2082460f81da6b1ae3216b9d5906759f19ec0ff1 Mon Sep 17 00:00:00 2001 From: Sam Therapy Date: Tue, 6 Dec 2022 18:06:01 +0100 Subject: [PATCH] ignore the lockfile :( Signed-off-by: Sam Therapy --- Dockerfile | 2 +- run.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cce1e30..17f8a1a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM denoland/deno:1.28.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 && deno cache https://deno.land/x/deploy/deployctl.ts +RUN deno install --allow-read --allow-write --allow-env --allow-net --allow-run --no-check -r -f https://deno.land/x/deploy/deployctl.ts COPY run.ts /bin/ RUN chmod +x /bin/run.ts diff --git a/run.ts b/run.ts index 9b6d728..d54c1a8 100755 --- a/run.ts +++ b/run.ts @@ -1,4 +1,4 @@ -#!/usr/bin/env -S deno run --allow-run --allow-env +#!/usr/bin/env -S deno run --allow-run --allow-env --no-lock const env = Deno.env.toObject();