
Use custom Docker images & GPUs
Run Burla workers with custom images, native tools, and GPUs.
When to use an image
Build the smallest image that contains the slow parts
FROM python:3.12-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
bwa \
samtools \
&& rm -rf /var/lib/apt/lists/*
RUN pip install boto3 awscli