deno-deploy/Dockerfile
Sam Therapy 10d17ae2f6
All checks were successful
continuous-integration/drone/push Build is passing
Spain without the S
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2024-03-24 17:26:45 +01:00

11 lines
286 B
Docker

FROM denoland/deno:1.41.3 AS base
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
USER deno
CMD ["/bin/run.ts"]