mirror of
https://github.com/hoshikawa2/agent_framework_oci_evaluator.git
synced 2026-07-09 10:34:19 +00:00
6 lines
159 B
Docker
6 lines
159 B
Docker
FROM python:3.12-slim
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN pip install --no-cache-dir -e .
|
|
CMD ["python", "-m", "evaluator.cli", "run-agents", "--source", "langfuse"]
|