deno-deploy/Dockerfile
Renovate Bot 4dbc4a43ef
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
chore(deps): update denoland/deno docker tag to v1.41.3
2024-03-14 21:00:44 +00:00

11 lines
274 B
Docker

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