deno-deploy/Dockerfile
Sam Therapy a1b5e6d3c9
All checks were successful
continuous-integration/drone/push Build is passing
Change from shell to JS
Already using Deno so why not just use it more

Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-10-12 03:08:42 +02:00

10 lines
No EOL
246 B
Docker

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