mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
19 lines
449 B
Docker
19 lines
449 B
Docker
# Backend QA Agent
|
|||
|
|
# Testing and quality assurance tools for backend
|
||
|
|
|
||
|
|
FROM roboco-agent-base
|
||
|
|
|
||
|
|
USER root
|
||
|
|
|
||
|
|
# QA tools for backend
|
||
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||
|
|
postgresql-client \
|
||
|
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
|
||
|
|
USER agent
|
||
|
|
|
||
|
|
# Python testing tools are already in pyproject.toml (pytest, coverage, etc.)
|
||
|
|
|
||
|
|
LABEL role="backend-qa"
|
||
|
|
LABEL description="Backend QA agent - testing, code review, quality assurance"
|