deno-deploy/Dockerfile
Sam Therapy feab29e592
All checks were successful
continuous-integration/drone/push Build is passing
stream the output dynamically
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-12-06 18:23:04 +01:00

11 lines
274 B
Docker

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
COPY run.ts /bin/
RUN chmod +x /bin/run.ts && deno cache /bin/run.ts
USER deno
CMD ["/bin/run.ts"]