add a cache maybe?
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
Sam Therapy 2022-12-05 20:33:06 +01:00
parent db589bd5c2
commit 13715b8252
Signed by: sam
GPG key ID: 4D8B07C18F31ACBD

View file

@ -1,7 +1,7 @@
FROM denoland/deno:1.28.3
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
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
COPY run.ts /bin/
RUN chmod +x /bin/run.ts