Files
windmill/benchmarks/Dockerfile
Ruben Fiszel 9e235937ce add WAC v2 benchmarks and improve benchmark infrastructure (#8550)
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-27 08:53:46 +00:00

21 lines
420 B
Docker

FROM denoland/deno:alpine-2.1.4
WORKDIR /app
USER deno
ADD ./lib.ts .
ADD ./action.ts .
ADD ./main.ts .
RUN deno cache main.ts
ADD ./worker.ts .
RUN deno cache worker.ts
ADD ./scraper.ts .
RUN deno cache scraper.ts
ADD ./benchmark_oneoff.ts .
RUN deno cache benchmark_oneoff.ts
ADD ./benchmark_suite.ts .
RUN deno cache benchmark_suite.ts
ENTRYPOINT [ "/tini", "--", "docker-entrypoint.sh", "run", "-A", "main.ts" ]