Renovate Bot
7e0905749e
All checks were successful
continuous-integration/drone/push Build is passing
10 lines
274 B
Docker
10 lines
274 B
Docker
FROM denoland/deno:1.35.2 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"]
|