FROM python:3.13-alpine

RUN apk add --no-cache bash shellcheck
COPY requirements.txt /opt/requirements.txt
RUN pip install --no-cache-dir -r /opt/requirements.txt
