deno-deploy/Dockerfile
Renovate Bot 0f92af6a94
Some checks failed
ci / docker (push) Failing after 36s
chore(deps): update denoland/deno docker tag to v1.43.1
2024-05-01 22:00:53 +00:00

11 lines
286 B
Docker

FROM denoland/deno:1.43.1 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"]