FROM python:3.12-slim

RUN pip install --no-cache-dir certbot certbot-dns-cloudflare

WORKDIR /src
COPY . /src

RUN pip install --no-cache-dir .

CMD ["sh", "/src/tests/e2e/run.sh"]
