FROM python:3.12-slim
WORKDIR /agent
COPY ethica-agent.py .
ENTRYPOINT ["python3", "ethica-agent.py"]
CMD ["--config", "/config/ethica-agent.yml"]
