Sam Therapy
a1b5e6d3c9
All checks were successful
continuous-integration/drone/push Build is passing
Already using Deno so why not just use it more Signed-off-by: Sam Therapy <sam@samtherapy.net>
10 lines
No EOL
246 B
Docker
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"] |