deno-deploy/Dockerfile
Sam Therapy 2082460f81
All checks were successful
continuous-integration/drone/push Build is passing
ignore the lockfile
:(

Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-12-06 18:06:01 +01:00

11 lines
248 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
USER deno
CMD ["/bin/run.ts"]