deno-deploy/Dockerfile
Sam Therapy fca3edd48a
All checks were successful
continuous-integration/drone/push Build is passing
fix(deps): Upgrade base container
2022-11-15 16:58:10 +01:00

11 lines
240 B
Docker

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