🚀 PUMA Challenge Docker Submission Question ¶
By: aia_wt on March 7, 2025, 8:43 a.m.
Hi everyone! How should the Dockerfile be written correctly?
Currently, the Dockerfile ends with the following lines:
RUN chmod +x ./inference.sh # entrypoint to run ENTRYPOINT ["./inference.sh"] # default arguments, can be overridden CMD ["--input", "/input/images/melanoma-wsi", "--output", "/output", "--cp", "/checkpoint", "--tta", "4", "--inf_workers", "4", "--pp_tiling", "10", "--pp_workers", "4"]
Should I run test_run.sh
at the end automatically?
If yes, how should I modify the Dockerfile to execute test_run.sh
after inference.sh
finishes without affecting the current functionality?
Any help or suggestions would be greatly appreciated! 🙏 Thank you in advance!