mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
18 lines
383 B
Docker
18 lines
383 B
Docker
# Backend Developer Agent
|
|||
|
|
# Python/FastAPI development tools
|
||
|
|
|
||
|
|
FROM roboco-agent-base
|
||
|
|
|
||
|
|
USER root
|
||
|
|
|
||
|
|
# Backend-specific tools
|
||
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||
|
|
postgresql-client \
|
||
|
|
redis-tools \
|
||
|
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
|
||
|
|
USER agent
|
||
|
|
|
||
|
|
LABEL role="backend-developer"
|
||
|
|
LABEL description="Backend developer agent - Python, FastAPI, databases"
|