deno-deploy/Dockerfile
Sam Therapy 79ed176b61
All checks were successful
continuous-integration/drone/push Build is passing
Remove test file
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-10-11 03:16:46 +02:00

10 lines
246 B
Docker

FROM denoland/deno:alpine-1.26.1
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.sh /bin/
RUN chmod +x /bin/run.sh
USER deno
CMD ["/bin/run.sh"]