openlatch-client 0.0.0

The open-source security layer for AI agents — client forwarder
Documentation
1
2
3
4
5
6
7
8
9
10
FROM python:3.12-slim

RUN pip install --no-cache-dir uv

WORKDIR /e2e
COPY pyproject.toml ./
COPY openlatch_e2e/ ./openlatch_e2e/
RUN uv sync

ENTRYPOINT ["uv", "run", "openlatch-e2e"]